Skip to content

Prioritizing Vulnerability Coordination

In coordinated vulnerability disclosure (CVD), there are two available decisions modelled in SSVC. The first is whether or not to coordinate a vulnerability report. This decision is also known as triage.

Coordination Triage Priority

As noted in Enumerating Decisions, the root of a decision model's identity is the combination of the stakeholder and the decision being modeled. In this case, the stakeholder is the Coordinator and the decision is the priority of coordinating a vulnerability report.

Coordinator Triage Units of Work

Coordinator Unit of Work

The unit of work for a Coordinator is usually a single report to be coordinated.

Coordinator units of work tend to coincide with whatever arrives in a single report, which spans the range from a single vulnerability affecting a specific version of an individual product from one Supplier all the way to fundamental design flaws in system specifications that could affect every Supplier and product that uses or implements the flawed specification. Coordinators may need to reorganize reports (e.g., merge, split, expand, or contract) according to their workflow demands. SSVC can be applied to either the initial report or to the results of such refinement.

Coordinator Triage Decision Outcomes

We take three priority levels in our decision about whether and how to coordinate a vulnerability based on an incoming report:

Decline, Track, Coordinate (ssvc:COORDINATE:1.0.1)

The coordinate outcome group.

Value Definition
Decline (D) Do not act on the report.
Track (T) Receive information about the vulnerability and monitor for status changes but do not take any overt actions.
Coordinate (C) Take action on the report.
Decline, Track, Coordinate (ssvc:COORDINATE:1.0.1) JSON Example
{
  "namespace": "ssvc",
  "key": "COORDINATE",
  "version": "1.0.1",
  "name": "Decline, Track, Coordinate",
  "description": "The coordinate outcome group.",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "D",
      "name": "Decline",
      "description": "Do not act on the report."
    },
    {
      "key": "T",
      "name": "Track",
      "description": "Receive information about the vulnerability and monitor for status changes but do not take any overt actions."
    },
    {
      "key": "C",
      "name": "Coordinate",
      "description": "Take action on the report."
    }
  ]
}
  • Decline — Do not act on the report. May take different forms, including ignoring the report as well as an acknowledgement to the reporter that we will not act and suggest the reporter to go to vendor or publish if unresponsive.
  • Track — Receive information about the vulnerability and monitor for status changes but do not take any overt actions.
  • Coordinate — Take action on the report. “Action” may include any one or more of: technical analysis, reproduction, notifying vendors, lead coordination (notify, communicate, and publish), publish only (amplify public message), advise only, secondary coordinator (assist another lead coordinator).

FIRST CSIRT Services Framework

The FIRST CSIRT Services Framework describes the services that a coordinator may provide in the area of vulnerability management. It includes services such as vulnerability coordination, vulnerability analysis, and vulnerability reporting.

Coordinator Triage Decision Points

Prior CERT/CC Work on Prioritizing Coordination Decisions

Vulnerability Response Decision Assistance (VRDA) provides a starting point for a decision model for this situation. VRDA is likely adequate for national-level CSIRTs that do general CVD, but other CSIRT types may have different needs. The CERT Guide to Coordinated Vulnerability Disclosure provides something similar for those who are deciding how to report and disclose vulnerabilities they have discovered.

The coordination and publication decisions for CERT/CC are about the social and collaborative state of vulnerability management. Our goal with the coordination decision is to base it on information that is available to the analyst when CERT/CC receives a vulnerability report. In addition to using some of the decision points common to Suppliers and Deployers (Utility and Public Safety Impact), we have added five new decision points for the coordination decision model.

The first two function as gating questions:

These two sets of exceptional circumstances mean that the seven decision points involved in the coordination triage tree can be compressed slightly, as the decision model below shows.

The remaining five decision points are:

  • Report Credibility: If the report is not credible, then CERT/CC will decline the case.
  • Supplier Cardinality: Cases involving multiple suppliers can get complicated very quickly, so we are more likely to get involved in those cases.
  • Supplier Engagement: If the suppliers are already engaged in a case, there is usually less for a coordinator to do, making it less likely that we will coordinate a case.
  • Utility: If the vulnerability has high utility, then CERT/CC is more likely to coordinate the case.
  • Public Safety Impact: If the vulnerability has significant public safety impact, then CERT/CC is more likely to coordinate the case.

More detail about each of these decision points is provided at the links above, here we provide a brief summary of each.

Report Public (ssvc:RP:1.0.0)

Is a viable report of the details of the vulnerability already publicly available?

Value Definition
Yes (Y) A public report of the vulnerability exists.
No (N) No public report of the vulnerability exists.
Report Public (ssvc:RP:1.0.0) JSON Example
{
  "namespace": "ssvc",
  "key": "RP",
  "version": "1.0.0",
  "name": "Report Public",
  "description": "Is a viable report of the details of the vulnerability already publicly available?",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "Y",
      "name": "Yes",
      "description": "A public report of the vulnerability exists."
    },
    {
      "key": "N",
      "name": "No",
      "description": "No public report of the vulnerability exists."
    }
  ]
}

Supplier Contacted (ssvc:SCON:1.0.0)

Has the reporter made a good-faith effort to contact the supplier of the vulnerable component using a quality contact method?

Value Definition
No (N) The supplier has not been contacted.
Yes (Y) The supplier has been contacted.
Supplier Contacted (ssvc:SCON:1.0.0) JSON Example
{
  "namespace": "ssvc",
  "key": "SCON",
  "version": "1.0.0",
  "name": "Supplier Contacted",
  "description": "Has the reporter made a good-faith effort to contact the supplier of the vulnerable component using a quality contact method?",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "N",
      "name": "No",
      "description": "The supplier has not been contacted."
    },
    {
      "key": "Y",
      "name": "Yes",
      "description": "The supplier has been contacted."
    }
  ]
}

Report Credibility (ssvc:RC:1.0.0)

Is the report credible?

Value Definition
Not Credible (NC) The report is not credible.
Credible (C) The report is credible.
Report Credibility (ssvc:RC:1.0.0) JSON Example
{
  "namespace": "ssvc",
  "key": "RC",
  "version": "1.0.0",
  "name": "Report Credibility",
  "description": "Is the report credible?",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "NC",
      "name": "Not Credible",
      "description": "The report is not credible."
    },
    {
      "key": "C",
      "name": "Credible",
      "description": "The report is credible."
    }
  ]
}

Supplier Cardinality (ssvc:SC:1.0.0)

How many suppliers are responsible for the vulnerable component and its remediation or mitigation plan?

Value Definition
One (O) There is only one supplier of the vulnerable component.
Multiple (M) There are multiple suppliers of the vulnerable component.
Supplier Cardinality (ssvc:SC:1.0.0) JSON Example
{
  "namespace": "ssvc",
  "key": "SC",
  "version": "1.0.0",
  "name": "Supplier Cardinality",
  "description": "How many suppliers are responsible for the vulnerable component and its remediation or mitigation plan?",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "O",
      "name": "One",
      "description": "There is only one supplier of the vulnerable component."
    },
    {
      "key": "M",
      "name": "Multiple",
      "description": "There are multiple suppliers of the vulnerable component."
    }
  ]
}

Supplier Engagement (ssvc:SE:1.0.0)

Is the supplier responding to the reporter’s contact effort and actively participating in the coordination effort?

Value Definition
Active (A) The supplier is responding to the reporter’s contact effort and actively participating in the coordination effort.
Unresponsive (U) The supplier is not responding to the reporter’s contact effort and not actively participating in the coordination effort.
Supplier Engagement (ssvc:SE:1.0.0) JSON Example
{
  "namespace": "ssvc",
  "key": "SE",
  "version": "1.0.0",
  "name": "Supplier Engagement",
  "description": "Is the supplier responding to the reporter’s contact effort and actively participating in the coordination effort?",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "A",
      "name": "Active",
      "description": "The supplier is responding to the reporter’s contact effort and actively participating in the coordination effort."
    },
    {
      "key": "U",
      "name": "Unresponsive",
      "description": "The supplier is not responding to the reporter’s contact effort and not actively participating in the coordination effort."
    }
  ]
}

Utility (ssvc:U:1.0.1)

The Usefulness of the Exploit to the Adversary

Value Definition
Laborious (L) Automatable:No AND Value Density:Diffuse
Efficient (E) (Automatable:Yes AND Value Density:Diffuse) OR (Automatable:No AND Value Density:Concentrated)
Super Effective (S) Automatable:Yes AND Value Density:Concentrated
Utility (ssvc:U:1.0.1) JSON Example
{
  "namespace": "ssvc",
  "key": "U",
  "version": "1.0.1",
  "name": "Utility",
  "description": "The Usefulness of the Exploit to the Adversary",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "L",
      "name": "Laborious",
      "description": "Automatable:No AND Value Density:Diffuse"
    },
    {
      "key": "E",
      "name": "Efficient",
      "description": "(Automatable:Yes AND Value Density:Diffuse) OR (Automatable:No AND Value Density:Concentrated)"
    },
    {
      "key": "S",
      "name": "Super Effective",
      "description": "Automatable:Yes AND Value Density:Concentrated"
    }
  ]
}

Public Safety Impact (ssvc:PSI:2.0.1)

A coarse-grained representation of impact to public safety.

Value Definition
Minimal (M) Safety Impact:Negligible
Significant (S) Safety Impact:(Marginal OR Critical OR Catastrophic)
Public Safety Impact (ssvc:PSI:2.0.1) JSON Example
{
  "namespace": "ssvc",
  "key": "PSI",
  "version": "2.0.1",
  "name": "Public Safety Impact",
  "description": "A coarse-grained representation of impact to public safety.",
  "schemaVersion": "2.0.0",
  "values": [
    {
      "key": "M",
      "name": "Minimal",
      "description": "Safety Impact:Negligible"
    },
    {
      "key": "S",
      "name": "Significant",
      "description": "Safety Impact:(Marginal OR Critical OR Catastrophic)"
    }
  ]
}

Coordinator Triage Decision Model

The following example decision model is a policy that closely follows our own decision model at the CERT/CC. Other coordinators should consider customizing the tree to their needs, as described in Tree Construction and Customization Guidance.

SSVC Customization in Action: CISA

CISA has customized an SSVC decision model to suit their coordination needs. It is available at https://www.cisa.gov/ssvc.

Decision Model Visualization

The following diagram shows the decision model for the coordinator triage decision.

---
title: Coordinator Triage Decision Table (ssvc:DT_COORD_TRIAGE:1.0.0) - ssvc:RP:1.0.0:Y
---
graph LR
n1(( ))
subgraph s1["ssvc:RP:1.0.0"]
Y_L0([Y])
end
subgraph s2["ssvc:SCON:1.0.0"]
Y_N_L1([N])
Y_Y_L1([Y])
end
subgraph s3["ssvc:RC:1.0.0"]
Y_N_NC_L2([NC])
Y_Y_NC_L2([NC])
Y_N_C_L2([C])
Y_Y_C_L2([C])
end
subgraph s4["ssvc:SC:1.0.0"]
Y_N_NC_O_L3([O])
Y_Y_NC_O_L3([O])
Y_N_C_O_L3([O])
Y_N_NC_M_L3([M])
Y_Y_C_O_L3([O])
Y_Y_NC_M_L3([M])
Y_N_C_M_L3([M])
Y_Y_C_M_L3([M])
end
subgraph s5["ssvc:SE:1.0.0"]
Y_N_NC_O_A_L4([A])
Y_Y_NC_O_A_L4([A])
Y_N_C_O_A_L4([A])
Y_N_NC_M_A_L4([A])
Y_N_NC_O_U_L4([U])
Y_Y_C_O_A_L4([A])
Y_Y_NC_M_A_L4([A])
Y_N_C_M_A_L4([A])
Y_Y_NC_O_U_L4([U])
Y_N_C_O_U_L4([U])
Y_N_NC_M_U_L4([U])
Y_Y_C_M_A_L4([A])
Y_Y_C_O_U_L4([U])
Y_Y_NC_M_U_L4([U])
Y_N_C_M_U_L4([U])
Y_Y_C_M_U_L4([U])
end
subgraph s6["ssvc:U:1.0.1"]
Y_N_NC_O_A_L_L5([L])
Y_Y_NC_O_A_L_L5([L])
Y_N_C_O_A_L_L5([L])
Y_N_NC_M_A_L_L5([L])
Y_N_NC_O_U_L_L5([L])
Y_N_NC_O_A_E_L5([E])
Y_Y_C_O_A_L_L5([L])
Y_Y_NC_M_A_L_L5([L])
Y_N_C_M_A_L_L5([L])
Y_Y_NC_O_U_L_L5([L])
Y_N_C_O_U_L_L5([L])
Y_N_NC_M_U_L_L5([L])
Y_Y_NC_O_A_E_L5([E])
Y_N_C_O_A_E_L5([E])
Y_N_NC_M_A_E_L5([E])
Y_N_NC_O_U_E_L5([E])
Y_N_NC_O_A_S_L5([S])
Y_Y_C_M_A_L_L5([L])
Y_Y_C_O_U_L_L5([L])
Y_Y_NC_M_U_L_L5([L])
Y_N_C_M_U_L_L5([L])
Y_Y_C_O_A_E_L5([E])
Y_Y_NC_M_A_E_L5([E])
Y_N_C_M_A_E_L5([E])
Y_Y_NC_O_U_E_L5([E])
Y_N_C_O_U_E_L5([E])
Y_N_NC_M_U_E_L5([E])
Y_Y_NC_O_A_S_L5([S])
Y_N_C_O_A_S_L5([S])
Y_N_NC_M_A_S_L5([S])
Y_N_NC_O_U_S_L5([S])
Y_Y_C_M_U_L_L5([L])
Y_Y_C_M_A_E_L5([E])
Y_Y_C_O_U_E_L5([E])
Y_Y_NC_M_U_E_L5([E])
Y_N_C_M_U_E_L5([E])
Y_Y_C_O_A_S_L5([S])
Y_Y_NC_M_A_S_L5([S])
Y_N_C_M_A_S_L5([S])
Y_Y_NC_O_U_S_L5([S])
Y_N_C_O_U_S_L5([S])
Y_N_NC_M_U_S_L5([S])
Y_Y_C_M_U_E_L5([E])
Y_Y_C_M_A_S_L5([S])
Y_Y_C_O_U_S_L5([S])
Y_Y_NC_M_U_S_L5([S])
Y_N_C_M_U_S_L5([S])
Y_Y_C_M_U_S_L5([S])
end
subgraph s7["ssvc:PSI:2.0.1"]
Y_N_NC_O_A_L_M_L6([M])
Y_Y_NC_O_A_L_M_L6([M])
Y_N_C_O_A_L_M_L6([M])
Y_N_NC_M_A_L_M_L6([M])
Y_N_NC_O_U_L_M_L6([M])
Y_N_NC_O_A_E_M_L6([M])
Y_N_NC_O_A_L_S_L6([S])
Y_Y_C_O_A_L_M_L6([M])
Y_Y_NC_M_A_L_M_L6([M])
Y_N_C_M_A_L_M_L6([M])
Y_Y_NC_O_U_L_M_L6([M])
Y_N_C_O_U_L_M_L6([M])
Y_N_NC_M_U_L_M_L6([M])
Y_Y_NC_O_A_E_M_L6([M])
Y_N_C_O_A_E_M_L6([M])
Y_N_NC_M_A_E_M_L6([M])
Y_N_NC_O_U_E_M_L6([M])
Y_N_NC_O_A_S_M_L6([M])
Y_Y_NC_O_A_L_S_L6([S])
Y_N_C_O_A_L_S_L6([S])
Y_N_NC_M_A_L_S_L6([S])
Y_N_NC_O_U_L_S_L6([S])
Y_N_NC_O_A_E_S_L6([S])
Y_Y_C_M_A_L_M_L6([M])
Y_Y_C_O_U_L_M_L6([M])
Y_Y_NC_M_U_L_M_L6([M])
Y_N_C_M_U_L_M_L6([M])
Y_Y_C_O_A_E_M_L6([M])
Y_Y_NC_M_A_E_M_L6([M])
Y_N_C_M_A_E_M_L6([M])
Y_Y_NC_O_U_E_M_L6([M])
Y_N_C_O_U_E_M_L6([M])
Y_N_NC_M_U_E_M_L6([M])
Y_Y_NC_O_A_S_M_L6([M])
Y_N_C_O_A_S_M_L6([M])
Y_N_NC_M_A_S_M_L6([M])
Y_N_NC_O_U_S_M_L6([M])
Y_Y_C_O_A_L_S_L6([S])
Y_Y_NC_M_A_L_S_L6([S])
Y_N_C_M_A_L_S_L6([S])
Y_Y_NC_O_U_L_S_L6([S])
Y_N_C_O_U_L_S_L6([S])
Y_N_NC_M_U_L_S_L6([S])
Y_Y_NC_O_A_E_S_L6([S])
Y_N_C_O_A_E_S_L6([S])
Y_N_NC_M_A_E_S_L6([S])
Y_N_NC_O_U_E_S_L6([S])
Y_N_NC_O_A_S_S_L6([S])
Y_Y_C_M_U_L_M_L6([M])
Y_Y_C_M_A_E_M_L6([M])
Y_Y_C_O_U_E_M_L6([M])
Y_Y_NC_M_U_E_M_L6([M])
Y_N_C_M_U_E_M_L6([M])
Y_Y_C_O_A_S_M_L6([M])
Y_Y_NC_M_A_S_M_L6([M])
Y_N_C_M_A_S_M_L6([M])
Y_Y_NC_O_U_S_M_L6([M])
Y_N_C_O_U_S_M_L6([M])
Y_N_NC_M_U_S_M_L6([M])
Y_Y_C_M_A_L_S_L6([S])
Y_Y_C_O_U_L_S_L6([S])
Y_Y_NC_M_U_L_S_L6([S])
Y_N_C_M_U_L_S_L6([S])
Y_Y_C_O_A_E_S_L6([S])
Y_Y_NC_M_A_E_S_L6([S])
Y_N_C_M_A_E_S_L6([S])
Y_Y_NC_O_U_E_S_L6([S])
Y_N_C_O_U_E_S_L6([S])
Y_N_NC_M_U_E_S_L6([S])
Y_Y_NC_O_A_S_S_L6([S])
Y_N_C_O_A_S_S_L6([S])
Y_N_NC_M_A_S_S_L6([S])
Y_N_NC_O_U_S_S_L6([S])
Y_Y_C_M_U_E_M_L6([M])
Y_Y_C_M_A_S_M_L6([M])
Y_Y_C_O_U_S_M_L6([M])
Y_Y_NC_M_U_S_M_L6([M])
Y_N_C_M_U_S_M_L6([M])
Y_Y_C_M_U_L_S_L6([S])
Y_Y_C_M_A_E_S_L6([S])
Y_Y_C_O_U_E_S_L6([S])
Y_Y_NC_M_U_E_S_L6([S])
Y_N_C_M_U_E_S_L6([S])
Y_Y_C_O_A_S_S_L6([S])
Y_Y_NC_M_A_S_S_L6([S])
Y_N_C_M_A_S_S_L6([S])
Y_Y_NC_O_U_S_S_L6([S])
Y_N_C_O_U_S_S_L6([S])
Y_N_NC_M_U_S_S_L6([S])
Y_Y_C_M_U_S_M_L6([M])
Y_Y_C_M_U_E_S_L6([S])
Y_Y_C_M_A_S_S_L6([S])
Y_Y_C_O_U_S_S_L6([S])
Y_Y_NC_M_U_S_S_L6([S])
Y_N_C_M_U_S_S_L6([S])
Y_Y_C_M_U_S_S_L6([S])
end
subgraph s8["ssvc:COORDINATE:1.0.1"]
Y_N_NC_O_A_L_M_D_L7([D])
Y_Y_NC_O_A_L_M_D_L7([D])
Y_N_C_O_A_L_M_D_L7([D])
Y_N_NC_M_A_L_M_D_L7([D])
Y_N_NC_O_U_L_M_D_L7([D])
Y_N_NC_O_A_E_M_D_L7([D])
Y_N_NC_O_A_L_S_D_L7([D])
Y_Y_C_O_A_L_M_D_L7([D])
Y_Y_NC_M_A_L_M_D_L7([D])
Y_N_C_M_A_L_M_D_L7([D])
Y_Y_NC_O_U_L_M_D_L7([D])
Y_N_C_O_U_L_M_D_L7([D])
Y_N_NC_M_U_L_M_D_L7([D])
Y_Y_NC_O_A_E_M_D_L7([D])
Y_N_C_O_A_E_M_D_L7([D])
Y_N_NC_M_A_E_M_D_L7([D])
Y_N_NC_O_U_E_M_D_L7([D])
Y_N_NC_O_A_S_M_D_L7([D])
Y_Y_NC_O_A_L_S_D_L7([D])
Y_N_C_O_A_L_S_D_L7([D])
Y_N_NC_M_A_L_S_D_L7([D])
Y_N_NC_O_U_L_S_D_L7([D])
Y_N_NC_O_A_E_S_D_L7([D])
Y_Y_C_M_A_L_M_D_L7([D])
Y_Y_C_O_U_L_M_D_L7([D])
Y_Y_NC_M_U_L_M_D_L7([D])
Y_N_C_M_U_L_M_D_L7([D])
Y_Y_C_O_A_E_M_D_L7([D])
Y_Y_NC_M_A_E_M_D_L7([D])
Y_N_C_M_A_E_M_D_L7([D])
Y_Y_NC_O_U_E_M_D_L7([D])
Y_N_C_O_U_E_M_D_L7([D])
Y_N_NC_M_U_E_M_D_L7([D])
Y_Y_NC_O_A_S_M_D_L7([D])
Y_N_C_O_A_S_M_D_L7([D])
Y_N_NC_M_A_S_M_D_L7([D])
Y_N_NC_O_U_S_M_D_L7([D])
Y_Y_C_O_A_L_S_D_L7([D])
Y_Y_NC_M_A_L_S_D_L7([D])
Y_N_C_M_A_L_S_D_L7([D])
Y_Y_NC_O_U_L_S_D_L7([D])
Y_N_C_O_U_L_S_D_L7([D])
Y_N_NC_M_U_L_S_D_L7([D])
Y_Y_NC_O_A_E_S_D_L7([D])
Y_N_C_O_A_E_S_D_L7([D])
Y_N_NC_M_A_E_S_D_L7([D])
Y_N_NC_O_U_E_S_D_L7([D])
Y_N_NC_O_A_S_S_D_L7([D])
Y_Y_C_M_U_L_M_D_L7([D])
Y_Y_C_M_A_E_M_D_L7([D])
Y_Y_C_O_U_E_M_D_L7([D])
Y_Y_NC_M_U_E_M_D_L7([D])
Y_N_C_M_U_E_M_D_L7([D])
Y_Y_C_O_A_S_M_D_L7([D])
Y_Y_NC_M_A_S_M_D_L7([D])
Y_N_C_M_A_S_M_D_L7([D])
Y_Y_NC_O_U_S_M_D_L7([D])
Y_N_C_O_U_S_M_D_L7([D])
Y_N_NC_M_U_S_M_D_L7([D])
Y_Y_C_M_A_L_S_D_L7([D])
Y_Y_C_O_U_L_S_D_L7([D])
Y_Y_NC_M_U_L_S_D_L7([D])
Y_N_C_M_U_L_S_D_L7([D])
Y_Y_C_O_A_E_S_D_L7([D])
Y_Y_NC_M_A_E_S_D_L7([D])
Y_N_C_M_A_E_S_D_L7([D])
Y_Y_NC_O_U_E_S_D_L7([D])
Y_N_C_O_U_E_S_D_L7([D])
Y_N_NC_M_U_E_S_D_L7([D])
Y_Y_NC_O_A_S_S_D_L7([D])
Y_N_C_O_A_S_S_D_L7([D])
Y_N_NC_M_A_S_S_C_L7([C])
Y_N_NC_O_U_S_S_D_L7([D])
Y_Y_C_M_U_E_M_D_L7([D])
Y_Y_C_M_A_S_M_D_L7([D])
Y_Y_C_O_U_S_M_D_L7([D])
Y_Y_NC_M_U_S_M_D_L7([D])
Y_N_C_M_U_S_M_D_L7([D])
Y_Y_C_M_U_L_S_D_L7([D])
Y_Y_C_M_A_E_S_D_L7([D])
Y_Y_C_O_U_E_S_D_L7([D])
Y_Y_NC_M_U_E_S_D_L7([D])
Y_N_C_M_U_E_S_D_L7([D])
Y_Y_C_O_A_S_S_D_L7([D])
Y_Y_NC_M_A_S_S_C_L7([C])
Y_N_C_M_A_S_S_C_L7([C])
Y_Y_NC_O_U_S_S_D_L7([D])
Y_N_C_O_U_S_S_D_L7([D])
Y_N_NC_M_U_S_S_C_L7([C])
Y_Y_C_M_U_S_M_D_L7([D])
Y_Y_C_M_U_E_S_D_L7([D])
Y_Y_C_M_A_S_S_C_L7([C])
Y_Y_C_O_U_S_S_D_L7([D])
Y_Y_NC_M_U_S_S_C_L7([C])
Y_N_C_M_U_S_S_C_L7([C])
Y_Y_C_M_U_S_S_C_L7([C])
end
n1 --- Y_L0
Y_L0 --- Y_N_L1
Y_N_L1 --- Y_N_NC_L2
Y_N_NC_L2 --- Y_N_NC_O_L3
Y_N_NC_O_L3 --- Y_N_NC_O_A_L4
Y_N_NC_O_A_L4 --- Y_N_NC_O_A_L_L5
Y_N_NC_O_A_L_L5 --- Y_N_NC_O_A_L_M_L6
Y_N_NC_O_A_L_M_L6 --- Y_N_NC_O_A_L_M_D_L7
Y_L0 --- Y_Y_L1
Y_Y_L1 --- Y_Y_NC_L2
Y_Y_NC_L2 --- Y_Y_NC_O_L3
Y_Y_NC_O_L3 --- Y_Y_NC_O_A_L4
Y_Y_NC_O_A_L4 --- Y_Y_NC_O_A_L_L5
Y_Y_NC_O_A_L_L5 --- Y_Y_NC_O_A_L_M_L6
Y_Y_NC_O_A_L_M_L6 --- Y_Y_NC_O_A_L_M_D_L7
Y_N_L1 --- Y_N_C_L2
Y_N_C_L2 --- Y_N_C_O_L3
Y_N_C_O_L3 --- Y_N_C_O_A_L4
Y_N_C_O_A_L4 --- Y_N_C_O_A_L_L5
Y_N_C_O_A_L_L5 --- Y_N_C_O_A_L_M_L6
Y_N_C_O_A_L_M_L6 --- Y_N_C_O_A_L_M_D_L7
Y_N_NC_L2 --- Y_N_NC_M_L3
Y_N_NC_M_L3 --- Y_N_NC_M_A_L4
Y_N_NC_M_A_L4 --- Y_N_NC_M_A_L_L5
Y_N_NC_M_A_L_L5 --- Y_N_NC_M_A_L_M_L6
Y_N_NC_M_A_L_M_L6 --- Y_N_NC_M_A_L_M_D_L7
Y_N_NC_O_L3 --- Y_N_NC_O_U_L4
Y_N_NC_O_U_L4 --- Y_N_NC_O_U_L_L5
Y_N_NC_O_U_L_L5 --- Y_N_NC_O_U_L_M_L6
Y_N_NC_O_U_L_M_L6 --- Y_N_NC_O_U_L_M_D_L7
Y_N_NC_O_A_L4 --- Y_N_NC_O_A_E_L5
Y_N_NC_O_A_E_L5 --- Y_N_NC_O_A_E_M_L6
Y_N_NC_O_A_E_M_L6 --- Y_N_NC_O_A_E_M_D_L7
Y_N_NC_O_A_L_L5 --- Y_N_NC_O_A_L_S_L6
Y_N_NC_O_A_L_S_L6 --- Y_N_NC_O_A_L_S_D_L7
Y_Y_L1 --- Y_Y_C_L2
Y_Y_C_L2 --- Y_Y_C_O_L3
Y_Y_C_O_L3 --- Y_Y_C_O_A_L4
Y_Y_C_O_A_L4 --- Y_Y_C_O_A_L_L5
Y_Y_C_O_A_L_L5 --- Y_Y_C_O_A_L_M_L6
Y_Y_C_O_A_L_M_L6 --- Y_Y_C_O_A_L_M_D_L7
Y_Y_NC_L2 --- Y_Y_NC_M_L3
Y_Y_NC_M_L3 --- Y_Y_NC_M_A_L4
Y_Y_NC_M_A_L4 --- Y_Y_NC_M_A_L_L5
Y_Y_NC_M_A_L_L5 --- Y_Y_NC_M_A_L_M_L6
Y_Y_NC_M_A_L_M_L6 --- Y_Y_NC_M_A_L_M_D_L7
Y_N_C_L2 --- Y_N_C_M_L3
Y_N_C_M_L3 --- Y_N_C_M_A_L4
Y_N_C_M_A_L4 --- Y_N_C_M_A_L_L5
Y_N_C_M_A_L_L5 --- Y_N_C_M_A_L_M_L6
Y_N_C_M_A_L_M_L6 --- Y_N_C_M_A_L_M_D_L7
Y_Y_NC_O_L3 --- Y_Y_NC_O_U_L4
Y_Y_NC_O_U_L4 --- Y_Y_NC_O_U_L_L5
Y_Y_NC_O_U_L_L5 --- Y_Y_NC_O_U_L_M_L6
Y_Y_NC_O_U_L_M_L6 --- Y_Y_NC_O_U_L_M_D_L7
Y_N_C_O_L3 --- Y_N_C_O_U_L4
Y_N_C_O_U_L4 --- Y_N_C_O_U_L_L5
Y_N_C_O_U_L_L5 --- Y_N_C_O_U_L_M_L6
Y_N_C_O_U_L_M_L6 --- Y_N_C_O_U_L_M_D_L7
Y_N_NC_M_L3 --- Y_N_NC_M_U_L4
Y_N_NC_M_U_L4 --- Y_N_NC_M_U_L_L5
Y_N_NC_M_U_L_L5 --- Y_N_NC_M_U_L_M_L6
Y_N_NC_M_U_L_M_L6 --- Y_N_NC_M_U_L_M_D_L7
Y_Y_NC_O_A_L4 --- Y_Y_NC_O_A_E_L5
Y_Y_NC_O_A_E_L5 --- Y_Y_NC_O_A_E_M_L6
Y_Y_NC_O_A_E_M_L6 --- Y_Y_NC_O_A_E_M_D_L7
Y_N_C_O_A_L4 --- Y_N_C_O_A_E_L5
Y_N_C_O_A_E_L5 --- Y_N_C_O_A_E_M_L6
Y_N_C_O_A_E_M_L6 --- Y_N_C_O_A_E_M_D_L7
Y_N_NC_M_A_L4 --- Y_N_NC_M_A_E_L5
Y_N_NC_M_A_E_L5 --- Y_N_NC_M_A_E_M_L6
Y_N_NC_M_A_E_M_L6 --- Y_N_NC_M_A_E_M_D_L7
Y_N_NC_O_U_L4 --- Y_N_NC_O_U_E_L5
Y_N_NC_O_U_E_L5 --- Y_N_NC_O_U_E_M_L6
Y_N_NC_O_U_E_M_L6 --- Y_N_NC_O_U_E_M_D_L7
Y_N_NC_O_A_L4 --- Y_N_NC_O_A_S_L5
Y_N_NC_O_A_S_L5 --- Y_N_NC_O_A_S_M_L6
Y_N_NC_O_A_S_M_L6 --- Y_N_NC_O_A_S_M_D_L7
Y_Y_NC_O_A_L_L5 --- Y_Y_NC_O_A_L_S_L6
Y_Y_NC_O_A_L_S_L6 --- Y_Y_NC_O_A_L_S_D_L7
Y_N_C_O_A_L_L5 --- Y_N_C_O_A_L_S_L6
Y_N_C_O_A_L_S_L6 --- Y_N_C_O_A_L_S_D_L7
Y_N_NC_M_A_L_L5 --- Y_N_NC_M_A_L_S_L6
Y_N_NC_M_A_L_S_L6 --- Y_N_NC_M_A_L_S_D_L7
Y_N_NC_O_U_L_L5 --- Y_N_NC_O_U_L_S_L6
Y_N_NC_O_U_L_S_L6 --- Y_N_NC_O_U_L_S_D_L7
Y_N_NC_O_A_E_L5 --- Y_N_NC_O_A_E_S_L6
Y_N_NC_O_A_E_S_L6 --- Y_N_NC_O_A_E_S_D_L7
Y_Y_C_L2 --- Y_Y_C_M_L3
Y_Y_C_M_L3 --- Y_Y_C_M_A_L4
Y_Y_C_M_A_L4 --- Y_Y_C_M_A_L_L5
Y_Y_C_M_A_L_L5 --- Y_Y_C_M_A_L_M_L6
Y_Y_C_M_A_L_M_L6 --- Y_Y_C_M_A_L_M_D_L7
Y_Y_C_O_L3 --- Y_Y_C_O_U_L4
Y_Y_C_O_U_L4 --- Y_Y_C_O_U_L_L5
Y_Y_C_O_U_L_L5 --- Y_Y_C_O_U_L_M_L6
Y_Y_C_O_U_L_M_L6 --- Y_Y_C_O_U_L_M_D_L7
Y_Y_NC_M_L3 --- Y_Y_NC_M_U_L4
Y_Y_NC_M_U_L4 --- Y_Y_NC_M_U_L_L5
Y_Y_NC_M_U_L_L5 --- Y_Y_NC_M_U_L_M_L6
Y_Y_NC_M_U_L_M_L6 --- Y_Y_NC_M_U_L_M_D_L7
Y_N_C_M_L3 --- Y_N_C_M_U_L4
Y_N_C_M_U_L4 --- Y_N_C_M_U_L_L5
Y_N_C_M_U_L_L5 --- Y_N_C_M_U_L_M_L6
Y_N_C_M_U_L_M_L6 --- Y_N_C_M_U_L_M_D_L7
Y_Y_C_O_A_L4 --- Y_Y_C_O_A_E_L5
Y_Y_C_O_A_E_L5 --- Y_Y_C_O_A_E_M_L6
Y_Y_C_O_A_E_M_L6 --- Y_Y_C_O_A_E_M_D_L7
Y_Y_NC_M_A_L4 --- Y_Y_NC_M_A_E_L5
Y_Y_NC_M_A_E_L5 --- Y_Y_NC_M_A_E_M_L6
Y_Y_NC_M_A_E_M_L6 --- Y_Y_NC_M_A_E_M_D_L7
Y_N_C_M_A_L4 --- Y_N_C_M_A_E_L5
Y_N_C_M_A_E_L5 --- Y_N_C_M_A_E_M_L6
Y_N_C_M_A_E_M_L6 --- Y_N_C_M_A_E_M_D_L7
Y_Y_NC_O_U_L4 --- Y_Y_NC_O_U_E_L5
Y_Y_NC_O_U_E_L5 --- Y_Y_NC_O_U_E_M_L6
Y_Y_NC_O_U_E_M_L6 --- Y_Y_NC_O_U_E_M_D_L7
Y_N_C_O_U_L4 --- Y_N_C_O_U_E_L5
Y_N_C_O_U_E_L5 --- Y_N_C_O_U_E_M_L6
Y_N_C_O_U_E_M_L6 --- Y_N_C_O_U_E_M_D_L7
Y_N_NC_M_U_L4 --- Y_N_NC_M_U_E_L5
Y_N_NC_M_U_E_L5 --- Y_N_NC_M_U_E_M_L6
Y_N_NC_M_U_E_M_L6 --- Y_N_NC_M_U_E_M_D_L7
Y_Y_NC_O_A_L4 --- Y_Y_NC_O_A_S_L5
Y_Y_NC_O_A_S_L5 --- Y_Y_NC_O_A_S_M_L6
Y_Y_NC_O_A_S_M_L6 --- Y_Y_NC_O_A_S_M_D_L7
Y_N_C_O_A_L4 --- Y_N_C_O_A_S_L5
Y_N_C_O_A_S_L5 --- Y_N_C_O_A_S_M_L6
Y_N_C_O_A_S_M_L6 --- Y_N_C_O_A_S_M_D_L7
Y_N_NC_M_A_L4 --- Y_N_NC_M_A_S_L5
Y_N_NC_M_A_S_L5 --- Y_N_NC_M_A_S_M_L6
Y_N_NC_M_A_S_M_L6 --- Y_N_NC_M_A_S_M_D_L7
Y_N_NC_O_U_L4 --- Y_N_NC_O_U_S_L5
Y_N_NC_O_U_S_L5 --- Y_N_NC_O_U_S_M_L6
Y_N_NC_O_U_S_M_L6 --- Y_N_NC_O_U_S_M_D_L7
Y_Y_C_O_A_L_L5 --- Y_Y_C_O_A_L_S_L6
Y_Y_C_O_A_L_S_L6 --- Y_Y_C_O_A_L_S_D_L7
Y_Y_NC_M_A_L_L5 --- Y_Y_NC_M_A_L_S_L6
Y_Y_NC_M_A_L_S_L6 --- Y_Y_NC_M_A_L_S_D_L7
Y_N_C_M_A_L_L5 --- Y_N_C_M_A_L_S_L6
Y_N_C_M_A_L_S_L6 --- Y_N_C_M_A_L_S_D_L7
Y_Y_NC_O_U_L_L5 --- Y_Y_NC_O_U_L_S_L6
Y_Y_NC_O_U_L_S_L6 --- Y_Y_NC_O_U_L_S_D_L7
Y_N_C_O_U_L_L5 --- Y_N_C_O_U_L_S_L6
Y_N_C_O_U_L_S_L6 --- Y_N_C_O_U_L_S_D_L7
Y_N_NC_M_U_L_L5 --- Y_N_NC_M_U_L_S_L6
Y_N_NC_M_U_L_S_L6 --- Y_N_NC_M_U_L_S_D_L7
Y_Y_NC_O_A_E_L5 --- Y_Y_NC_O_A_E_S_L6
Y_Y_NC_O_A_E_S_L6 --- Y_Y_NC_O_A_E_S_D_L7
Y_N_C_O_A_E_L5 --- Y_N_C_O_A_E_S_L6
Y_N_C_O_A_E_S_L6 --- Y_N_C_O_A_E_S_D_L7
Y_N_NC_M_A_E_L5 --- Y_N_NC_M_A_E_S_L6
Y_N_NC_M_A_E_S_L6 --- Y_N_NC_M_A_E_S_D_L7
Y_N_NC_O_U_E_L5 --- Y_N_NC_O_U_E_S_L6
Y_N_NC_O_U_E_S_L6 --- Y_N_NC_O_U_E_S_D_L7
Y_N_NC_O_A_S_L5 --- Y_N_NC_O_A_S_S_L6
Y_N_NC_O_A_S_S_L6 --- Y_N_NC_O_A_S_S_D_L7
Y_Y_C_M_L3 --- Y_Y_C_M_U_L4
Y_Y_C_M_U_L4 --- Y_Y_C_M_U_L_L5
Y_Y_C_M_U_L_L5 --- Y_Y_C_M_U_L_M_L6
Y_Y_C_M_U_L_M_L6 --- Y_Y_C_M_U_L_M_D_L7
Y_Y_C_M_A_L4 --- Y_Y_C_M_A_E_L5
Y_Y_C_M_A_E_L5 --- Y_Y_C_M_A_E_M_L6
Y_Y_C_M_A_E_M_L6 --- Y_Y_C_M_A_E_M_D_L7
Y_Y_C_O_U_L4 --- Y_Y_C_O_U_E_L5
Y_Y_C_O_U_E_L5 --- Y_Y_C_O_U_E_M_L6
Y_Y_C_O_U_E_M_L6 --- Y_Y_C_O_U_E_M_D_L7
Y_Y_NC_M_U_L4 --- Y_Y_NC_M_U_E_L5
Y_Y_NC_M_U_E_L5 --- Y_Y_NC_M_U_E_M_L6
Y_Y_NC_M_U_E_M_L6 --- Y_Y_NC_M_U_E_M_D_L7
Y_N_C_M_U_L4 --- Y_N_C_M_U_E_L5
Y_N_C_M_U_E_L5 --- Y_N_C_M_U_E_M_L6
Y_N_C_M_U_E_M_L6 --- Y_N_C_M_U_E_M_D_L7
Y_Y_C_O_A_L4 --- Y_Y_C_O_A_S_L5
Y_Y_C_O_A_S_L5 --- Y_Y_C_O_A_S_M_L6
Y_Y_C_O_A_S_M_L6 --- Y_Y_C_O_A_S_M_D_L7
Y_Y_NC_M_A_L4 --- Y_Y_NC_M_A_S_L5
Y_Y_NC_M_A_S_L5 --- Y_Y_NC_M_A_S_M_L6
Y_Y_NC_M_A_S_M_L6 --- Y_Y_NC_M_A_S_M_D_L7
Y_N_C_M_A_L4 --- Y_N_C_M_A_S_L5
Y_N_C_M_A_S_L5 --- Y_N_C_M_A_S_M_L6
Y_N_C_M_A_S_M_L6 --- Y_N_C_M_A_S_M_D_L7
Y_Y_NC_O_U_L4 --- Y_Y_NC_O_U_S_L5
Y_Y_NC_O_U_S_L5 --- Y_Y_NC_O_U_S_M_L6
Y_Y_NC_O_U_S_M_L6 --- Y_Y_NC_O_U_S_M_D_L7
Y_N_C_O_U_L4 --- Y_N_C_O_U_S_L5
Y_N_C_O_U_S_L5 --- Y_N_C_O_U_S_M_L6
Y_N_C_O_U_S_M_L6 --- Y_N_C_O_U_S_M_D_L7
Y_N_NC_M_U_L4 --- Y_N_NC_M_U_S_L5
Y_N_NC_M_U_S_L5 --- Y_N_NC_M_U_S_M_L6
Y_N_NC_M_U_S_M_L6 --- Y_N_NC_M_U_S_M_D_L7
Y_Y_C_M_A_L_L5 --- Y_Y_C_M_A_L_S_L6
Y_Y_C_M_A_L_S_L6 --- Y_Y_C_M_A_L_S_D_L7
Y_Y_C_O_U_L_L5 --- Y_Y_C_O_U_L_S_L6
Y_Y_C_O_U_L_S_L6 --- Y_Y_C_O_U_L_S_D_L7
Y_Y_NC_M_U_L_L5 --- Y_Y_NC_M_U_L_S_L6
Y_Y_NC_M_U_L_S_L6 --- Y_Y_NC_M_U_L_S_D_L7
Y_N_C_M_U_L_L5 --- Y_N_C_M_U_L_S_L6
Y_N_C_M_U_L_S_L6 --- Y_N_C_M_U_L_S_D_L7
Y_Y_C_O_A_E_L5 --- Y_Y_C_O_A_E_S_L6
Y_Y_C_O_A_E_S_L6 --- Y_Y_C_O_A_E_S_D_L7
Y_Y_NC_M_A_E_L5 --- Y_Y_NC_M_A_E_S_L6
Y_Y_NC_M_A_E_S_L6 --- Y_Y_NC_M_A_E_S_D_L7
Y_N_C_M_A_E_L5 --- Y_N_C_M_A_E_S_L6
Y_N_C_M_A_E_S_L6 --- Y_N_C_M_A_E_S_D_L7
Y_Y_NC_O_U_E_L5 --- Y_Y_NC_O_U_E_S_L6
Y_Y_NC_O_U_E_S_L6 --- Y_Y_NC_O_U_E_S_D_L7
Y_N_C_O_U_E_L5 --- Y_N_C_O_U_E_S_L6
Y_N_C_O_U_E_S_L6 --- Y_N_C_O_U_E_S_D_L7
Y_N_NC_M_U_E_L5 --- Y_N_NC_M_U_E_S_L6
Y_N_NC_M_U_E_S_L6 --- Y_N_NC_M_U_E_S_D_L7
Y_Y_NC_O_A_S_L5 --- Y_Y_NC_O_A_S_S_L6
Y_Y_NC_O_A_S_S_L6 --- Y_Y_NC_O_A_S_S_D_L7
Y_N_C_O_A_S_L5 --- Y_N_C_O_A_S_S_L6
Y_N_C_O_A_S_S_L6 --- Y_N_C_O_A_S_S_D_L7
Y_N_NC_M_A_S_L5 --- Y_N_NC_M_A_S_S_L6
Y_N_NC_M_A_S_S_L6 --- Y_N_NC_M_A_S_S_C_L7
Y_N_NC_O_U_S_L5 --- Y_N_NC_O_U_S_S_L6
Y_N_NC_O_U_S_S_L6 --- Y_N_NC_O_U_S_S_D_L7
Y_Y_C_M_U_L4 --- Y_Y_C_M_U_E_L5
Y_Y_C_M_U_E_L5 --- Y_Y_C_M_U_E_M_L6
Y_Y_C_M_U_E_M_L6 --- Y_Y_C_M_U_E_M_D_L7
Y_Y_C_M_A_L4 --- Y_Y_C_M_A_S_L5
Y_Y_C_M_A_S_L5 --- Y_Y_C_M_A_S_M_L6
Y_Y_C_M_A_S_M_L6 --- Y_Y_C_M_A_S_M_D_L7
Y_Y_C_O_U_L4 --- Y_Y_C_O_U_S_L5
Y_Y_C_O_U_S_L5 --- Y_Y_C_O_U_S_M_L6
Y_Y_C_O_U_S_M_L6 --- Y_Y_C_O_U_S_M_D_L7
Y_Y_NC_M_U_L4 --- Y_Y_NC_M_U_S_L5
Y_Y_NC_M_U_S_L5 --- Y_Y_NC_M_U_S_M_L6
Y_Y_NC_M_U_S_M_L6 --- Y_Y_NC_M_U_S_M_D_L7
Y_N_C_M_U_L4 --- Y_N_C_M_U_S_L5
Y_N_C_M_U_S_L5 --- Y_N_C_M_U_S_M_L6
Y_N_C_M_U_S_M_L6 --- Y_N_C_M_U_S_M_D_L7
Y_Y_C_M_U_L_L5 --- Y_Y_C_M_U_L_S_L6
Y_Y_C_M_U_L_S_L6 --- Y_Y_C_M_U_L_S_D_L7
Y_Y_C_M_A_E_L5 --- Y_Y_C_M_A_E_S_L6
Y_Y_C_M_A_E_S_L6 --- Y_Y_C_M_A_E_S_D_L7
Y_Y_C_O_U_E_L5 --- Y_Y_C_O_U_E_S_L6
Y_Y_C_O_U_E_S_L6 --- Y_Y_C_O_U_E_S_D_L7
Y_Y_NC_M_U_E_L5 --- Y_Y_NC_M_U_E_S_L6
Y_Y_NC_M_U_E_S_L6 --- Y_Y_NC_M_U_E_S_D_L7
Y_N_C_M_U_E_L5 --- Y_N_C_M_U_E_S_L6
Y_N_C_M_U_E_S_L6 --- Y_N_C_M_U_E_S_D_L7
Y_Y_C_O_A_S_L5 --- Y_Y_C_O_A_S_S_L6
Y_Y_C_O_A_S_S_L6 --- Y_Y_C_O_A_S_S_D_L7
Y_Y_NC_M_A_S_L5 --- Y_Y_NC_M_A_S_S_L6
Y_Y_NC_M_A_S_S_L6 --- Y_Y_NC_M_A_S_S_C_L7
Y_N_C_M_A_S_L5 --- Y_N_C_M_A_S_S_L6
Y_N_C_M_A_S_S_L6 --- Y_N_C_M_A_S_S_C_L7
Y_Y_NC_O_U_S_L5 --- Y_Y_NC_O_U_S_S_L6
Y_Y_NC_O_U_S_S_L6 --- Y_Y_NC_O_U_S_S_D_L7
Y_N_C_O_U_S_L5 --- Y_N_C_O_U_S_S_L6
Y_N_C_O_U_S_S_L6 --- Y_N_C_O_U_S_S_D_L7
Y_N_NC_M_U_S_L5 --- Y_N_NC_M_U_S_S_L6
Y_N_NC_M_U_S_S_L6 --- Y_N_NC_M_U_S_S_C_L7
Y_Y_C_M_U_L4 --- Y_Y_C_M_U_S_L5
Y_Y_C_M_U_S_L5 --- Y_Y_C_M_U_S_M_L6
Y_Y_C_M_U_S_M_L6 --- Y_Y_C_M_U_S_M_D_L7
Y_Y_C_M_U_E_L5 --- Y_Y_C_M_U_E_S_L6
Y_Y_C_M_U_E_S_L6 --- Y_Y_C_M_U_E_S_D_L7
Y_Y_C_M_A_S_L5 --- Y_Y_C_M_A_S_S_L6
Y_Y_C_M_A_S_S_L6 --- Y_Y_C_M_A_S_S_C_L7
Y_Y_C_O_U_S_L5 --- Y_Y_C_O_U_S_S_L6
Y_Y_C_O_U_S_S_L6 --- Y_Y_C_O_U_S_S_D_L7
Y_Y_NC_M_U_S_L5 --- Y_Y_NC_M_U_S_S_L6
Y_Y_NC_M_U_S_S_L6 --- Y_Y_NC_M_U_S_S_C_L7
Y_N_C_M_U_S_L5 --- Y_N_C_M_U_S_S_L6
Y_N_C_M_U_S_S_L6 --- Y_N_C_M_U_S_S_C_L7
Y_Y_C_M_U_S_L5 --- Y_Y_C_M_U_S_S_L6
Y_Y_C_M_U_S_S_L6 --- Y_Y_C_M_U_S_S_C_L7
---
title: Coordinator Triage Decision Table (ssvc:DT_COORD_TRIAGE:1.0.0) - ssvc:RP:1.0.0:N
---
graph LR
n1(( ))
subgraph s1["ssvc:RP:1.0.0"]
N_L0([N])
end
subgraph s2["ssvc:SCON:1.0.0"]
N_N_L1([N])
N_Y_L1([Y])
end
subgraph s3["ssvc:RC:1.0.0"]
N_N_NC_L2([NC])
N_Y_NC_L2([NC])
N_N_C_L2([C])
N_Y_C_L2([C])
end
subgraph s4["ssvc:SC:1.0.0"]
N_N_NC_O_L3([O])
N_Y_NC_O_L3([O])
N_N_C_O_L3([O])
N_N_NC_M_L3([M])
N_Y_C_O_L3([O])
N_Y_NC_M_L3([M])
N_N_C_M_L3([M])
N_Y_C_M_L3([M])
end
subgraph s5["ssvc:SE:1.0.0"]
N_N_NC_O_A_L4([A])
N_Y_NC_O_A_L4([A])
N_N_C_O_A_L4([A])
N_N_NC_M_A_L4([A])
N_N_NC_O_U_L4([U])
N_Y_C_O_A_L4([A])
N_Y_NC_M_A_L4([A])
N_N_C_M_A_L4([A])
N_Y_NC_O_U_L4([U])
N_N_C_O_U_L4([U])
N_N_NC_M_U_L4([U])
N_Y_C_M_A_L4([A])
N_Y_C_O_U_L4([U])
N_Y_NC_M_U_L4([U])
N_N_C_M_U_L4([U])
N_Y_C_M_U_L4([U])
end
subgraph s6["ssvc:U:1.0.1"]
N_N_NC_O_A_L_L5([L])
N_Y_NC_O_A_L_L5([L])
N_N_C_O_A_L_L5([L])
N_N_NC_M_A_L_L5([L])
N_N_NC_O_U_L_L5([L])
N_N_NC_O_A_E_L5([E])
N_Y_C_O_A_L_L5([L])
N_Y_NC_M_A_L_L5([L])
N_N_C_M_A_L_L5([L])
N_Y_NC_O_U_L_L5([L])
N_N_C_O_U_L_L5([L])
N_N_NC_M_U_L_L5([L])
N_Y_NC_O_A_E_L5([E])
N_N_C_O_A_E_L5([E])
N_N_NC_M_A_E_L5([E])
N_N_NC_O_U_E_L5([E])
N_N_NC_O_A_S_L5([S])
N_Y_C_M_A_L_L5([L])
N_Y_C_O_U_L_L5([L])
N_Y_NC_M_U_L_L5([L])
N_N_C_M_U_L_L5([L])
N_Y_C_O_A_E_L5([E])
N_Y_NC_M_A_E_L5([E])
N_N_C_M_A_E_L5([E])
N_Y_NC_O_U_E_L5([E])
N_N_C_O_U_E_L5([E])
N_N_NC_M_U_E_L5([E])
N_Y_NC_O_A_S_L5([S])
N_N_C_O_A_S_L5([S])
N_N_NC_M_A_S_L5([S])
N_N_NC_O_U_S_L5([S])
N_Y_C_M_U_L_L5([L])
N_Y_C_M_A_E_L5([E])
N_Y_C_O_U_E_L5([E])
N_Y_NC_M_U_E_L5([E])
N_N_C_M_U_E_L5([E])
N_Y_C_O_A_S_L5([S])
N_Y_NC_M_A_S_L5([S])
N_N_C_M_A_S_L5([S])
N_Y_NC_O_U_S_L5([S])
N_N_C_O_U_S_L5([S])
N_N_NC_M_U_S_L5([S])
N_Y_C_M_U_E_L5([E])
N_Y_C_M_A_S_L5([S])
N_Y_C_O_U_S_L5([S])
N_Y_NC_M_U_S_L5([S])
N_N_C_M_U_S_L5([S])
N_Y_C_M_U_S_L5([S])
end
subgraph s7["ssvc:PSI:2.0.1"]
N_N_NC_O_A_L_M_L6([M])
N_Y_NC_O_A_L_M_L6([M])
N_N_C_O_A_L_M_L6([M])
N_N_NC_M_A_L_M_L6([M])
N_N_NC_O_U_L_M_L6([M])
N_N_NC_O_A_E_M_L6([M])
N_N_NC_O_A_L_S_L6([S])
N_Y_C_O_A_L_M_L6([M])
N_Y_NC_M_A_L_M_L6([M])
N_N_C_M_A_L_M_L6([M])
N_Y_NC_O_U_L_M_L6([M])
N_N_C_O_U_L_M_L6([M])
N_N_NC_M_U_L_M_L6([M])
N_Y_NC_O_A_E_M_L6([M])
N_N_C_O_A_E_M_L6([M])
N_N_NC_M_A_E_M_L6([M])
N_N_NC_O_U_E_M_L6([M])
N_N_NC_O_A_S_M_L6([M])
N_Y_NC_O_A_L_S_L6([S])
N_N_C_O_A_L_S_L6([S])
N_N_NC_M_A_L_S_L6([S])
N_N_NC_O_U_L_S_L6([S])
N_N_NC_O_A_E_S_L6([S])
N_Y_C_M_A_L_M_L6([M])
N_Y_C_O_U_L_M_L6([M])
N_Y_NC_M_U_L_M_L6([M])
N_N_C_M_U_L_M_L6([M])
N_Y_C_O_A_E_M_L6([M])
N_Y_NC_M_A_E_M_L6([M])
N_N_C_M_A_E_M_L6([M])
N_Y_NC_O_U_E_M_L6([M])
N_N_C_O_U_E_M_L6([M])
N_N_NC_M_U_E_M_L6([M])
N_Y_NC_O_A_S_M_L6([M])
N_N_C_O_A_S_M_L6([M])
N_N_NC_M_A_S_M_L6([M])
N_N_NC_O_U_S_M_L6([M])
N_Y_C_O_A_L_S_L6([S])
N_Y_NC_M_A_L_S_L6([S])
N_N_C_M_A_L_S_L6([S])
N_Y_NC_O_U_L_S_L6([S])
N_N_C_O_U_L_S_L6([S])
N_N_NC_M_U_L_S_L6([S])
N_Y_NC_O_A_E_S_L6([S])
N_N_C_O_A_E_S_L6([S])
N_N_NC_M_A_E_S_L6([S])
N_N_NC_O_U_E_S_L6([S])
N_N_NC_O_A_S_S_L6([S])
N_Y_C_M_U_L_M_L6([M])
N_Y_C_M_A_E_M_L6([M])
N_Y_C_O_U_E_M_L6([M])
N_Y_NC_M_U_E_M_L6([M])
N_N_C_M_U_E_M_L6([M])
N_Y_C_O_A_S_M_L6([M])
N_Y_NC_M_A_S_M_L6([M])
N_N_C_M_A_S_M_L6([M])
N_Y_NC_O_U_S_M_L6([M])
N_N_C_O_U_S_M_L6([M])
N_N_NC_M_U_S_M_L6([M])
N_Y_C_M_A_L_S_L6([S])
N_Y_C_O_U_L_S_L6([S])
N_Y_NC_M_U_L_S_L6([S])
N_N_C_M_U_L_S_L6([S])
N_Y_C_O_A_E_S_L6([S])
N_Y_NC_M_A_E_S_L6([S])
N_N_C_M_A_E_S_L6([S])
N_Y_NC_O_U_E_S_L6([S])
N_N_C_O_U_E_S_L6([S])
N_N_NC_M_U_E_S_L6([S])
N_Y_NC_O_A_S_S_L6([S])
N_N_C_O_A_S_S_L6([S])
N_N_NC_M_A_S_S_L6([S])
N_N_NC_O_U_S_S_L6([S])
N_Y_C_M_U_E_M_L6([M])
N_Y_C_M_A_S_M_L6([M])
N_Y_C_O_U_S_M_L6([M])
N_Y_NC_M_U_S_M_L6([M])
N_N_C_M_U_S_M_L6([M])
N_Y_C_M_U_L_S_L6([S])
N_Y_C_M_A_E_S_L6([S])
N_Y_C_O_U_E_S_L6([S])
N_Y_NC_M_U_E_S_L6([S])
N_N_C_M_U_E_S_L6([S])
N_Y_C_O_A_S_S_L6([S])
N_Y_NC_M_A_S_S_L6([S])
N_N_C_M_A_S_S_L6([S])
N_Y_NC_O_U_S_S_L6([S])
N_N_C_O_U_S_S_L6([S])
N_N_NC_M_U_S_S_L6([S])
N_Y_C_M_U_S_M_L6([M])
N_Y_C_M_U_E_S_L6([S])
N_Y_C_M_A_S_S_L6([S])
N_Y_C_O_U_S_S_L6([S])
N_Y_NC_M_U_S_S_L6([S])
N_N_C_M_U_S_S_L6([S])
N_Y_C_M_U_S_S_L6([S])
end
subgraph s8["ssvc:COORDINATE:1.0.1"]
N_N_NC_O_A_L_M_D_L7([D])
N_Y_NC_O_A_L_M_D_L7([D])
N_N_C_O_A_L_M_D_L7([D])
N_N_NC_M_A_L_M_D_L7([D])
N_N_NC_O_U_L_M_D_L7([D])
N_N_NC_O_A_E_M_D_L7([D])
N_N_NC_O_A_L_S_D_L7([D])
N_Y_C_O_A_L_M_D_L7([D])
N_Y_NC_M_A_L_M_D_L7([D])
N_N_C_M_A_L_M_D_L7([D])
N_Y_NC_O_U_L_M_D_L7([D])
N_N_C_O_U_L_M_D_L7([D])
N_N_NC_M_U_L_M_D_L7([D])
N_Y_NC_O_A_E_M_D_L7([D])
N_N_C_O_A_E_M_D_L7([D])
N_N_NC_M_A_E_M_D_L7([D])
N_N_NC_O_U_E_M_D_L7([D])
N_N_NC_O_A_S_M_D_L7([D])
N_Y_NC_O_A_L_S_D_L7([D])
N_N_C_O_A_L_S_D_L7([D])
N_N_NC_M_A_L_S_D_L7([D])
N_N_NC_O_U_L_S_D_L7([D])
N_N_NC_O_A_E_S_D_L7([D])
N_Y_C_M_A_L_M_D_L7([D])
N_Y_C_O_U_L_M_T_L7([T])
N_Y_NC_M_U_L_M_D_L7([D])
N_N_C_M_U_L_M_D_L7([D])
N_Y_C_O_A_E_M_D_L7([D])
N_Y_NC_M_A_E_M_D_L7([D])
N_N_C_M_A_E_M_D_L7([D])
N_Y_NC_O_U_E_M_D_L7([D])
N_N_C_O_U_E_M_D_L7([D])
N_N_NC_M_U_E_M_D_L7([D])
N_Y_NC_O_A_S_M_D_L7([D])
N_N_C_O_A_S_M_D_L7([D])
N_N_NC_M_A_S_M_D_L7([D])
N_N_NC_O_U_S_M_D_L7([D])
N_Y_C_O_A_L_S_D_L7([D])
N_Y_NC_M_A_L_S_T_L7([T])
N_N_C_M_A_L_S_D_L7([D])
N_Y_NC_O_U_L_S_D_L7([D])
N_N_C_O_U_L_S_D_L7([D])
N_N_NC_M_U_L_S_D_L7([D])
N_Y_NC_O_A_E_S_T_L7([T])
N_N_C_O_A_E_S_D_L7([D])
N_N_NC_M_A_E_S_D_L7([D])
N_N_NC_O_U_E_S_D_L7([D])
N_N_NC_O_A_S_S_D_L7([D])
N_Y_C_M_U_L_M_C_L7([C])
N_Y_C_M_A_E_M_D_L7([D])
N_Y_C_O_U_E_M_C_L7([C])
N_Y_NC_M_U_E_M_D_L7([D])
N_N_C_M_U_E_M_D_L7([D])
N_Y_C_O_A_S_M_D_L7([D])
N_Y_NC_M_A_S_M_T_L7([T])
N_N_C_M_A_S_M_D_L7([D])
N_Y_NC_O_U_S_M_D_L7([D])
N_N_C_O_U_S_M_D_L7([D])
N_N_NC_M_U_S_M_D_L7([D])
N_Y_C_M_A_L_S_T_L7([T])
N_Y_C_O_U_L_S_C_L7([C])
N_Y_NC_M_U_L_S_T_L7([T])
N_N_C_M_U_L_S_D_L7([D])
N_Y_C_O_A_E_S_T_L7([T])
N_Y_NC_M_A_E_S_T_L7([T])
N_N_C_M_A_E_S_D_L7([D])
N_Y_NC_O_U_E_S_T_L7([T])
N_N_C_O_U_E_S_D_L7([D])
N_N_NC_M_U_E_S_D_L7([D])
N_Y_NC_O_A_S_S_T_L7([T])
N_N_C_O_A_S_S_D_L7([D])
N_N_NC_M_A_S_S_C_L7([C])
N_N_NC_O_U_S_S_D_L7([D])
N_Y_C_M_U_E_M_C_L7([C])
N_Y_C_M_A_S_M_C_L7([C])
N_Y_C_O_U_S_M_C_L7([C])
N_Y_NC_M_U_S_M_T_L7([T])
N_N_C_M_U_S_M_D_L7([D])
N_Y_C_M_U_L_S_C_L7([C])
N_Y_C_M_A_E_S_T_L7([T])
N_Y_C_O_U_E_S_C_L7([C])
N_Y_NC_M_U_E_S_T_L7([T])
N_N_C_M_U_E_S_D_L7([D])
N_Y_C_O_A_S_S_T_L7([T])
N_Y_NC_M_A_S_S_C_L7([C])
N_N_C_M_A_S_S_C_L7([C])
N_Y_NC_O_U_S_S_T_L7([T])
N_N_C_O_U_S_S_D_L7([D])
N_N_NC_M_U_S_S_C_L7([C])
N_Y_C_M_U_S_M_C_L7([C])
N_Y_C_M_U_E_S_C_L7([C])
N_Y_C_M_A_S_S_C_L7([C])
N_Y_C_O_U_S_S_C_L7([C])
N_Y_NC_M_U_S_S_C_L7([C])
N_N_C_M_U_S_S_C_L7([C])
N_Y_C_M_U_S_S_C_L7([C])
end
n1 --- N_L0
N_L0 --- N_N_L1
N_N_L1 --- N_N_NC_L2
N_N_NC_L2 --- N_N_NC_O_L3
N_N_NC_O_L3 --- N_N_NC_O_A_L4
N_N_NC_O_A_L4 --- N_N_NC_O_A_L_L5
N_N_NC_O_A_L_L5 --- N_N_NC_O_A_L_M_L6
N_N_NC_O_A_L_M_L6 --- N_N_NC_O_A_L_M_D_L7
N_L0 --- N_Y_L1
N_Y_L1 --- N_Y_NC_L2
N_Y_NC_L2 --- N_Y_NC_O_L3
N_Y_NC_O_L3 --- N_Y_NC_O_A_L4
N_Y_NC_O_A_L4 --- N_Y_NC_O_A_L_L5
N_Y_NC_O_A_L_L5 --- N_Y_NC_O_A_L_M_L6
N_Y_NC_O_A_L_M_L6 --- N_Y_NC_O_A_L_M_D_L7
N_N_L1 --- N_N_C_L2
N_N_C_L2 --- N_N_C_O_L3
N_N_C_O_L3 --- N_N_C_O_A_L4
N_N_C_O_A_L4 --- N_N_C_O_A_L_L5
N_N_C_O_A_L_L5 --- N_N_C_O_A_L_M_L6
N_N_C_O_A_L_M_L6 --- N_N_C_O_A_L_M_D_L7
N_N_NC_L2 --- N_N_NC_M_L3
N_N_NC_M_L3 --- N_N_NC_M_A_L4
N_N_NC_M_A_L4 --- N_N_NC_M_A_L_L5
N_N_NC_M_A_L_L5 --- N_N_NC_M_A_L_M_L6
N_N_NC_M_A_L_M_L6 --- N_N_NC_M_A_L_M_D_L7
N_N_NC_O_L3 --- N_N_NC_O_U_L4
N_N_NC_O_U_L4 --- N_N_NC_O_U_L_L5
N_N_NC_O_U_L_L5 --- N_N_NC_O_U_L_M_L6
N_N_NC_O_U_L_M_L6 --- N_N_NC_O_U_L_M_D_L7
N_N_NC_O_A_L4 --- N_N_NC_O_A_E_L5
N_N_NC_O_A_E_L5 --- N_N_NC_O_A_E_M_L6
N_N_NC_O_A_E_M_L6 --- N_N_NC_O_A_E_M_D_L7
N_N_NC_O_A_L_L5 --- N_N_NC_O_A_L_S_L6
N_N_NC_O_A_L_S_L6 --- N_N_NC_O_A_L_S_D_L7
N_Y_L1 --- N_Y_C_L2
N_Y_C_L2 --- N_Y_C_O_L3
N_Y_C_O_L3 --- N_Y_C_O_A_L4
N_Y_C_O_A_L4 --- N_Y_C_O_A_L_L5
N_Y_C_O_A_L_L5 --- N_Y_C_O_A_L_M_L6
N_Y_C_O_A_L_M_L6 --- N_Y_C_O_A_L_M_D_L7
N_Y_NC_L2 --- N_Y_NC_M_L3
N_Y_NC_M_L3 --- N_Y_NC_M_A_L4
N_Y_NC_M_A_L4 --- N_Y_NC_M_A_L_L5
N_Y_NC_M_A_L_L5 --- N_Y_NC_M_A_L_M_L6
N_Y_NC_M_A_L_M_L6 --- N_Y_NC_M_A_L_M_D_L7
N_N_C_L2 --- N_N_C_M_L3
N_N_C_M_L3 --- N_N_C_M_A_L4
N_N_C_M_A_L4 --- N_N_C_M_A_L_L5
N_N_C_M_A_L_L5 --- N_N_C_M_A_L_M_L6
N_N_C_M_A_L_M_L6 --- N_N_C_M_A_L_M_D_L7
N_Y_NC_O_L3 --- N_Y_NC_O_U_L4
N_Y_NC_O_U_L4 --- N_Y_NC_O_U_L_L5
N_Y_NC_O_U_L_L5 --- N_Y_NC_O_U_L_M_L6
N_Y_NC_O_U_L_M_L6 --- N_Y_NC_O_U_L_M_D_L7
N_N_C_O_L3 --- N_N_C_O_U_L4
N_N_C_O_U_L4 --- N_N_C_O_U_L_L5
N_N_C_O_U_L_L5 --- N_N_C_O_U_L_M_L6
N_N_C_O_U_L_M_L6 --- N_N_C_O_U_L_M_D_L7
N_N_NC_M_L3 --- N_N_NC_M_U_L4
N_N_NC_M_U_L4 --- N_N_NC_M_U_L_L5
N_N_NC_M_U_L_L5 --- N_N_NC_M_U_L_M_L6
N_N_NC_M_U_L_M_L6 --- N_N_NC_M_U_L_M_D_L7
N_Y_NC_O_A_L4 --- N_Y_NC_O_A_E_L5
N_Y_NC_O_A_E_L5 --- N_Y_NC_O_A_E_M_L6
N_Y_NC_O_A_E_M_L6 --- N_Y_NC_O_A_E_M_D_L7
N_N_C_O_A_L4 --- N_N_C_O_A_E_L5
N_N_C_O_A_E_L5 --- N_N_C_O_A_E_M_L6
N_N_C_O_A_E_M_L6 --- N_N_C_O_A_E_M_D_L7
N_N_NC_M_A_L4 --- N_N_NC_M_A_E_L5
N_N_NC_M_A_E_L5 --- N_N_NC_M_A_E_M_L6
N_N_NC_M_A_E_M_L6 --- N_N_NC_M_A_E_M_D_L7
N_N_NC_O_U_L4 --- N_N_NC_O_U_E_L5
N_N_NC_O_U_E_L5 --- N_N_NC_O_U_E_M_L6
N_N_NC_O_U_E_M_L6 --- N_N_NC_O_U_E_M_D_L7
N_N_NC_O_A_L4 --- N_N_NC_O_A_S_L5
N_N_NC_O_A_S_L5 --- N_N_NC_O_A_S_M_L6
N_N_NC_O_A_S_M_L6 --- N_N_NC_O_A_S_M_D_L7
N_Y_NC_O_A_L_L5 --- N_Y_NC_O_A_L_S_L6
N_Y_NC_O_A_L_S_L6 --- N_Y_NC_O_A_L_S_D_L7
N_N_C_O_A_L_L5 --- N_N_C_O_A_L_S_L6
N_N_C_O_A_L_S_L6 --- N_N_C_O_A_L_S_D_L7
N_N_NC_M_A_L_L5 --- N_N_NC_M_A_L_S_L6
N_N_NC_M_A_L_S_L6 --- N_N_NC_M_A_L_S_D_L7
N_N_NC_O_U_L_L5 --- N_N_NC_O_U_L_S_L6
N_N_NC_O_U_L_S_L6 --- N_N_NC_O_U_L_S_D_L7
N_N_NC_O_A_E_L5 --- N_N_NC_O_A_E_S_L6
N_N_NC_O_A_E_S_L6 --- N_N_NC_O_A_E_S_D_L7
N_Y_C_L2 --- N_Y_C_M_L3
N_Y_C_M_L3 --- N_Y_C_M_A_L4
N_Y_C_M_A_L4 --- N_Y_C_M_A_L_L5
N_Y_C_M_A_L_L5 --- N_Y_C_M_A_L_M_L6
N_Y_C_M_A_L_M_L6 --- N_Y_C_M_A_L_M_D_L7
N_Y_C_O_L3 --- N_Y_C_O_U_L4
N_Y_C_O_U_L4 --- N_Y_C_O_U_L_L5
N_Y_C_O_U_L_L5 --- N_Y_C_O_U_L_M_L6
N_Y_C_O_U_L_M_L6 --- N_Y_C_O_U_L_M_T_L7
N_Y_NC_M_L3 --- N_Y_NC_M_U_L4
N_Y_NC_M_U_L4 --- N_Y_NC_M_U_L_L5
N_Y_NC_M_U_L_L5 --- N_Y_NC_M_U_L_M_L6
N_Y_NC_M_U_L_M_L6 --- N_Y_NC_M_U_L_M_D_L7
N_N_C_M_L3 --- N_N_C_M_U_L4
N_N_C_M_U_L4 --- N_N_C_M_U_L_L5
N_N_C_M_U_L_L5 --- N_N_C_M_U_L_M_L6
N_N_C_M_U_L_M_L6 --- N_N_C_M_U_L_M_D_L7
N_Y_C_O_A_L4 --- N_Y_C_O_A_E_L5
N_Y_C_O_A_E_L5 --- N_Y_C_O_A_E_M_L6
N_Y_C_O_A_E_M_L6 --- N_Y_C_O_A_E_M_D_L7
N_Y_NC_M_A_L4 --- N_Y_NC_M_A_E_L5
N_Y_NC_M_A_E_L5 --- N_Y_NC_M_A_E_M_L6
N_Y_NC_M_A_E_M_L6 --- N_Y_NC_M_A_E_M_D_L7
N_N_C_M_A_L4 --- N_N_C_M_A_E_L5
N_N_C_M_A_E_L5 --- N_N_C_M_A_E_M_L6
N_N_C_M_A_E_M_L6 --- N_N_C_M_A_E_M_D_L7
N_Y_NC_O_U_L4 --- N_Y_NC_O_U_E_L5
N_Y_NC_O_U_E_L5 --- N_Y_NC_O_U_E_M_L6
N_Y_NC_O_U_E_M_L6 --- N_Y_NC_O_U_E_M_D_L7
N_N_C_O_U_L4 --- N_N_C_O_U_E_L5
N_N_C_O_U_E_L5 --- N_N_C_O_U_E_M_L6
N_N_C_O_U_E_M_L6 --- N_N_C_O_U_E_M_D_L7
N_N_NC_M_U_L4 --- N_N_NC_M_U_E_L5
N_N_NC_M_U_E_L5 --- N_N_NC_M_U_E_M_L6
N_N_NC_M_U_E_M_L6 --- N_N_NC_M_U_E_M_D_L7
N_Y_NC_O_A_L4 --- N_Y_NC_O_A_S_L5
N_Y_NC_O_A_S_L5 --- N_Y_NC_O_A_S_M_L6
N_Y_NC_O_A_S_M_L6 --- N_Y_NC_O_A_S_M_D_L7
N_N_C_O_A_L4 --- N_N_C_O_A_S_L5
N_N_C_O_A_S_L5 --- N_N_C_O_A_S_M_L6
N_N_C_O_A_S_M_L6 --- N_N_C_O_A_S_M_D_L7
N_N_NC_M_A_L4 --- N_N_NC_M_A_S_L5
N_N_NC_M_A_S_L5 --- N_N_NC_M_A_S_M_L6
N_N_NC_M_A_S_M_L6 --- N_N_NC_M_A_S_M_D_L7
N_N_NC_O_U_L4 --- N_N_NC_O_U_S_L5
N_N_NC_O_U_S_L5 --- N_N_NC_O_U_S_M_L6
N_N_NC_O_U_S_M_L6 --- N_N_NC_O_U_S_M_D_L7
N_Y_C_O_A_L_L5 --- N_Y_C_O_A_L_S_L6
N_Y_C_O_A_L_S_L6 --- N_Y_C_O_A_L_S_D_L7
N_Y_NC_M_A_L_L5 --- N_Y_NC_M_A_L_S_L6
N_Y_NC_M_A_L_S_L6 --- N_Y_NC_M_A_L_S_T_L7
N_N_C_M_A_L_L5 --- N_N_C_M_A_L_S_L6
N_N_C_M_A_L_S_L6 --- N_N_C_M_A_L_S_D_L7
N_Y_NC_O_U_L_L5 --- N_Y_NC_O_U_L_S_L6
N_Y_NC_O_U_L_S_L6 --- N_Y_NC_O_U_L_S_D_L7
N_N_C_O_U_L_L5 --- N_N_C_O_U_L_S_L6
N_N_C_O_U_L_S_L6 --- N_N_C_O_U_L_S_D_L7
N_N_NC_M_U_L_L5 --- N_N_NC_M_U_L_S_L6
N_N_NC_M_U_L_S_L6 --- N_N_NC_M_U_L_S_D_L7
N_Y_NC_O_A_E_L5 --- N_Y_NC_O_A_E_S_L6
N_Y_NC_O_A_E_S_L6 --- N_Y_NC_O_A_E_S_T_L7
N_N_C_O_A_E_L5 --- N_N_C_O_A_E_S_L6
N_N_C_O_A_E_S_L6 --- N_N_C_O_A_E_S_D_L7
N_N_NC_M_A_E_L5 --- N_N_NC_M_A_E_S_L6
N_N_NC_M_A_E_S_L6 --- N_N_NC_M_A_E_S_D_L7
N_N_NC_O_U_E_L5 --- N_N_NC_O_U_E_S_L6
N_N_NC_O_U_E_S_L6 --- N_N_NC_O_U_E_S_D_L7
N_N_NC_O_A_S_L5 --- N_N_NC_O_A_S_S_L6
N_N_NC_O_A_S_S_L6 --- N_N_NC_O_A_S_S_D_L7
N_Y_C_M_L3 --- N_Y_C_M_U_L4
N_Y_C_M_U_L4 --- N_Y_C_M_U_L_L5
N_Y_C_M_U_L_L5 --- N_Y_C_M_U_L_M_L6
N_Y_C_M_U_L_M_L6 --- N_Y_C_M_U_L_M_C_L7
N_Y_C_M_A_L4 --- N_Y_C_M_A_E_L5
N_Y_C_M_A_E_L5 --- N_Y_C_M_A_E_M_L6
N_Y_C_M_A_E_M_L6 --- N_Y_C_M_A_E_M_D_L7
N_Y_C_O_U_L4 --- N_Y_C_O_U_E_L5
N_Y_C_O_U_E_L5 --- N_Y_C_O_U_E_M_L6
N_Y_C_O_U_E_M_L6 --- N_Y_C_O_U_E_M_C_L7
N_Y_NC_M_U_L4 --- N_Y_NC_M_U_E_L5
N_Y_NC_M_U_E_L5 --- N_Y_NC_M_U_E_M_L6
N_Y_NC_M_U_E_M_L6 --- N_Y_NC_M_U_E_M_D_L7
N_N_C_M_U_L4 --- N_N_C_M_U_E_L5
N_N_C_M_U_E_L5 --- N_N_C_M_U_E_M_L6
N_N_C_M_U_E_M_L6 --- N_N_C_M_U_E_M_D_L7
N_Y_C_O_A_L4 --- N_Y_C_O_A_S_L5
N_Y_C_O_A_S_L5 --- N_Y_C_O_A_S_M_L6
N_Y_C_O_A_S_M_L6 --- N_Y_C_O_A_S_M_D_L7
N_Y_NC_M_A_L4 --- N_Y_NC_M_A_S_L5
N_Y_NC_M_A_S_L5 --- N_Y_NC_M_A_S_M_L6
N_Y_NC_M_A_S_M_L6 --- N_Y_NC_M_A_S_M_T_L7
N_N_C_M_A_L4 --- N_N_C_M_A_S_L5
N_N_C_M_A_S_L5 --- N_N_C_M_A_S_M_L6
N_N_C_M_A_S_M_L6 --- N_N_C_M_A_S_M_D_L7
N_Y_NC_O_U_L4 --- N_Y_NC_O_U_S_L5
N_Y_NC_O_U_S_L5 --- N_Y_NC_O_U_S_M_L6
N_Y_NC_O_U_S_M_L6 --- N_Y_NC_O_U_S_M_D_L7
N_N_C_O_U_L4 --- N_N_C_O_U_S_L5
N_N_C_O_U_S_L5 --- N_N_C_O_U_S_M_L6
N_N_C_O_U_S_M_L6 --- N_N_C_O_U_S_M_D_L7
N_N_NC_M_U_L4 --- N_N_NC_M_U_S_L5
N_N_NC_M_U_S_L5 --- N_N_NC_M_U_S_M_L6
N_N_NC_M_U_S_M_L6 --- N_N_NC_M_U_S_M_D_L7
N_Y_C_M_A_L_L5 --- N_Y_C_M_A_L_S_L6
N_Y_C_M_A_L_S_L6 --- N_Y_C_M_A_L_S_T_L7
N_Y_C_O_U_L_L5 --- N_Y_C_O_U_L_S_L6
N_Y_C_O_U_L_S_L6 --- N_Y_C_O_U_L_S_C_L7
N_Y_NC_M_U_L_L5 --- N_Y_NC_M_U_L_S_L6
N_Y_NC_M_U_L_S_L6 --- N_Y_NC_M_U_L_S_T_L7
N_N_C_M_U_L_L5 --- N_N_C_M_U_L_S_L6
N_N_C_M_U_L_S_L6 --- N_N_C_M_U_L_S_D_L7
N_Y_C_O_A_E_L5 --- N_Y_C_O_A_E_S_L6
N_Y_C_O_A_E_S_L6 --- N_Y_C_O_A_E_S_T_L7
N_Y_NC_M_A_E_L5 --- N_Y_NC_M_A_E_S_L6
N_Y_NC_M_A_E_S_L6 --- N_Y_NC_M_A_E_S_T_L7
N_N_C_M_A_E_L5 --- N_N_C_M_A_E_S_L6
N_N_C_M_A_E_S_L6 --- N_N_C_M_A_E_S_D_L7
N_Y_NC_O_U_E_L5 --- N_Y_NC_O_U_E_S_L6
N_Y_NC_O_U_E_S_L6 --- N_Y_NC_O_U_E_S_T_L7
N_N_C_O_U_E_L5 --- N_N_C_O_U_E_S_L6
N_N_C_O_U_E_S_L6 --- N_N_C_O_U_E_S_D_L7
N_N_NC_M_U_E_L5 --- N_N_NC_M_U_E_S_L6
N_N_NC_M_U_E_S_L6 --- N_N_NC_M_U_E_S_D_L7
N_Y_NC_O_A_S_L5 --- N_Y_NC_O_A_S_S_L6
N_Y_NC_O_A_S_S_L6 --- N_Y_NC_O_A_S_S_T_L7
N_N_C_O_A_S_L5 --- N_N_C_O_A_S_S_L6
N_N_C_O_A_S_S_L6 --- N_N_C_O_A_S_S_D_L7
N_N_NC_M_A_S_L5 --- N_N_NC_M_A_S_S_L6
N_N_NC_M_A_S_S_L6 --- N_N_NC_M_A_S_S_C_L7
N_N_NC_O_U_S_L5 --- N_N_NC_O_U_S_S_L6
N_N_NC_O_U_S_S_L6 --- N_N_NC_O_U_S_S_D_L7
N_Y_C_M_U_L4 --- N_Y_C_M_U_E_L5
N_Y_C_M_U_E_L5 --- N_Y_C_M_U_E_M_L6
N_Y_C_M_U_E_M_L6 --- N_Y_C_M_U_E_M_C_L7
N_Y_C_M_A_L4 --- N_Y_C_M_A_S_L5
N_Y_C_M_A_S_L5 --- N_Y_C_M_A_S_M_L6
N_Y_C_M_A_S_M_L6 --- N_Y_C_M_A_S_M_C_L7
N_Y_C_O_U_L4 --- N_Y_C_O_U_S_L5
N_Y_C_O_U_S_L5 --- N_Y_C_O_U_S_M_L6
N_Y_C_O_U_S_M_L6 --- N_Y_C_O_U_S_M_C_L7
N_Y_NC_M_U_L4 --- N_Y_NC_M_U_S_L5
N_Y_NC_M_U_S_L5 --- N_Y_NC_M_U_S_M_L6
N_Y_NC_M_U_S_M_L6 --- N_Y_NC_M_U_S_M_T_L7
N_N_C_M_U_L4 --- N_N_C_M_U_S_L5
N_N_C_M_U_S_L5 --- N_N_C_M_U_S_M_L6
N_N_C_M_U_S_M_L6 --- N_N_C_M_U_S_M_D_L7
N_Y_C_M_U_L_L5 --- N_Y_C_M_U_L_S_L6
N_Y_C_M_U_L_S_L6 --- N_Y_C_M_U_L_S_C_L7
N_Y_C_M_A_E_L5 --- N_Y_C_M_A_E_S_L6
N_Y_C_M_A_E_S_L6 --- N_Y_C_M_A_E_S_T_L7
N_Y_C_O_U_E_L5 --- N_Y_C_O_U_E_S_L6
N_Y_C_O_U_E_S_L6 --- N_Y_C_O_U_E_S_C_L7
N_Y_NC_M_U_E_L5 --- N_Y_NC_M_U_E_S_L6
N_Y_NC_M_U_E_S_L6 --- N_Y_NC_M_U_E_S_T_L7
N_N_C_M_U_E_L5 --- N_N_C_M_U_E_S_L6
N_N_C_M_U_E_S_L6 --- N_N_C_M_U_E_S_D_L7
N_Y_C_O_A_S_L5 --- N_Y_C_O_A_S_S_L6
N_Y_C_O_A_S_S_L6 --- N_Y_C_O_A_S_S_T_L7
N_Y_NC_M_A_S_L5 --- N_Y_NC_M_A_S_S_L6
N_Y_NC_M_A_S_S_L6 --- N_Y_NC_M_A_S_S_C_L7
N_N_C_M_A_S_L5 --- N_N_C_M_A_S_S_L6
N_N_C_M_A_S_S_L6 --- N_N_C_M_A_S_S_C_L7
N_Y_NC_O_U_S_L5 --- N_Y_NC_O_U_S_S_L6
N_Y_NC_O_U_S_S_L6 --- N_Y_NC_O_U_S_S_T_L7
N_N_C_O_U_S_L5 --- N_N_C_O_U_S_S_L6
N_N_C_O_U_S_S_L6 --- N_N_C_O_U_S_S_D_L7
N_N_NC_M_U_S_L5 --- N_N_NC_M_U_S_S_L6
N_N_NC_M_U_S_S_L6 --- N_N_NC_M_U_S_S_C_L7
N_Y_C_M_U_L4 --- N_Y_C_M_U_S_L5
N_Y_C_M_U_S_L5 --- N_Y_C_M_U_S_M_L6
N_Y_C_M_U_S_M_L6 --- N_Y_C_M_U_S_M_C_L7
N_Y_C_M_U_E_L5 --- N_Y_C_M_U_E_S_L6
N_Y_C_M_U_E_S_L6 --- N_Y_C_M_U_E_S_C_L7
N_Y_C_M_A_S_L5 --- N_Y_C_M_A_S_S_L6
N_Y_C_M_A_S_S_L6 --- N_Y_C_M_A_S_S_C_L7
N_Y_C_O_U_S_L5 --- N_Y_C_O_U_S_S_L6
N_Y_C_O_U_S_S_L6 --- N_Y_C_O_U_S_S_C_L7
N_Y_NC_M_U_S_L5 --- N_Y_NC_M_U_S_S_L6
N_Y_NC_M_U_S_S_L6 --- N_Y_NC_M_U_S_S_C_L7
N_N_C_M_U_S_L5 --- N_N_C_M_U_S_S_L6
N_N_C_M_U_S_S_L6 --- N_N_C_M_U_S_S_C_L7
N_Y_C_M_U_S_L5 --- N_Y_C_M_U_S_S_L6
N_Y_C_M_U_S_S_L6 --- N_Y_C_M_U_S_S_C_L7

Table of Values

The table below shows the values for the decision model. Each row of the table corresponds to a path through the decision model diagram above.

Scroll to the right to see the full table

The table below is scrollable to the right.

Row Report Public v1.0.0 Supplier Contacted v1.0.0 Report Credibility v1.0.0 Supplier Cardinality v1.0.0 Supplier Engagement v1.0.0 Utility v1.0.1 Public Safety Impact v2.0.1 Decline, Track, Coordinate v1.0.1
0 yes no not credible one active laborious minimal decline
1 no no not credible one active laborious minimal decline
2 yes yes not credible one active laborious minimal decline
3 yes no credible one active laborious minimal decline
4 yes no not credible multiple active laborious minimal decline
5 yes no not credible one unresponsive laborious minimal decline
6 yes no not credible one active efficient minimal decline
7 yes no not credible one active laborious significant decline
8 no yes not credible one active laborious minimal decline
9 no no credible one active laborious minimal decline
10 yes yes credible one active laborious minimal decline
11 no no not credible multiple active laborious minimal decline
12 yes yes not credible multiple active laborious minimal decline
13 yes no credible multiple active laborious minimal decline
14 no no not credible one unresponsive laborious minimal decline
15 yes yes not credible one unresponsive laborious minimal decline
16 yes no credible one unresponsive laborious minimal decline
17 yes no not credible multiple unresponsive laborious minimal decline
18 no no not credible one active efficient minimal decline
19 yes yes not credible one active efficient minimal decline
20 yes no credible one active efficient minimal decline
21 yes no not credible multiple active efficient minimal decline
22 yes no not credible one unresponsive efficient minimal decline
23 yes no not credible one active super effective minimal decline
24 no no not credible one active laborious significant decline
25 yes yes not credible one active laborious significant decline
26 yes no credible one active laborious significant decline
27 yes no not credible multiple active laborious significant decline
28 yes no not credible one unresponsive laborious significant decline
29 yes no not credible one active efficient significant decline
30 no yes credible one active laborious minimal decline
31 no yes not credible multiple active laborious minimal decline
32 no no credible multiple active laborious minimal decline
33 yes yes credible multiple active laborious minimal decline
34 no yes not credible one unresponsive laborious minimal decline
35 no no credible one unresponsive laborious minimal decline
36 yes yes credible one unresponsive laborious minimal decline
37 no no not credible multiple unresponsive laborious minimal decline
38 yes yes not credible multiple unresponsive laborious minimal decline
39 yes no credible multiple unresponsive laborious minimal decline
40 no yes not credible one active efficient minimal decline
41 no no credible one active efficient minimal decline
42 yes yes credible one active efficient minimal decline
43 no no not credible multiple active efficient minimal decline
44 yes yes not credible multiple active efficient minimal decline
45 yes no credible multiple active efficient minimal decline
46 no no not credible one unresponsive efficient minimal decline
47 yes yes not credible one unresponsive efficient minimal decline
48 yes no credible one unresponsive efficient minimal decline
49 yes no not credible multiple unresponsive efficient minimal decline
50 no no not credible one active super effective minimal decline
51 yes yes not credible one active super effective minimal decline
52 yes no credible one active super effective minimal decline
53 yes no not credible multiple active super effective minimal decline
54 yes no not credible one unresponsive super effective minimal decline
55 no yes not credible one active laborious significant decline
56 no no credible one active laborious significant decline
57 yes yes credible one active laborious significant decline
58 no no not credible multiple active laborious significant decline
59 yes yes not credible multiple active laborious significant decline
60 yes no credible multiple active laborious significant decline
61 no no not credible one unresponsive laborious significant decline
62 yes yes not credible one unresponsive laborious significant decline
63 yes no credible one unresponsive laborious significant decline
64 yes no not credible multiple unresponsive laborious significant decline
65 no no not credible one active efficient significant decline
66 yes yes not credible one active efficient significant decline
67 yes no credible one active efficient significant decline
68 yes no not credible multiple active efficient significant decline
69 yes no not credible one unresponsive efficient significant decline
70 yes no not credible one active super effective significant decline
71 no yes credible multiple active laborious minimal decline
72 no yes credible one unresponsive laborious minimal track
73 no yes not credible multiple unresponsive laborious minimal decline
74 no no credible multiple unresponsive laborious minimal decline
75 yes yes credible multiple unresponsive laborious minimal decline
76 no yes credible one active efficient minimal decline
77 no yes not credible multiple active efficient minimal decline
78 no no credible multiple active efficient minimal decline
79 yes yes credible multiple active efficient minimal decline
80 no yes not credible one unresponsive efficient minimal decline
81 no no credible one unresponsive efficient minimal decline
82 yes yes credible one unresponsive efficient minimal decline
83 no no not credible multiple unresponsive efficient minimal decline
84 yes yes not credible multiple unresponsive efficient minimal decline
85 yes no credible multiple unresponsive efficient minimal decline
86 no yes not credible one active super effective minimal decline
87 no no credible one active super effective minimal decline
88 yes yes credible one active super effective minimal decline
89 no no not credible multiple active super effective minimal decline
90 yes yes not credible multiple active super effective minimal decline
91 yes no credible multiple active super effective minimal decline
92 no no not credible one unresponsive super effective minimal decline
93 yes yes not credible one unresponsive super effective minimal decline
94 yes no credible one unresponsive super effective minimal decline
95 yes no not credible multiple unresponsive super effective minimal decline
96 no yes credible one active laborious significant decline
97 no yes not credible multiple active laborious significant track
98 no no credible multiple active laborious significant decline
99 yes yes credible multiple active laborious significant decline
100 no yes not credible one unresponsive laborious significant decline
101 no no credible one unresponsive laborious significant decline
102 yes yes credible one unresponsive laborious significant decline
103 no no not credible multiple unresponsive laborious significant decline
104 yes yes not credible multiple unresponsive laborious significant decline
105 yes no credible multiple unresponsive laborious significant decline
106 no yes not credible one active efficient significant track
107 no no credible one active efficient significant decline
108 yes yes credible one active efficient significant decline
109 no no not credible multiple active efficient significant decline
110 yes yes not credible multiple active efficient significant decline
111 yes no credible multiple active efficient significant decline
112 no no not credible one unresponsive efficient significant decline
113 yes yes not credible one unresponsive efficient significant decline
114 yes no credible one unresponsive efficient significant decline
115 yes no not credible multiple unresponsive efficient significant decline
116 no no not credible one active super effective significant decline
117 yes yes not credible one active super effective significant decline
118 yes no credible one active super effective significant decline
119 yes no not credible multiple active super effective significant coordinate
120 yes no not credible one unresponsive super effective significant decline
121 no yes credible multiple unresponsive laborious minimal coordinate
122 no yes credible multiple active efficient minimal decline
123 no yes credible one unresponsive efficient minimal coordinate
124 no yes not credible multiple unresponsive efficient minimal decline
125 no no credible multiple unresponsive efficient minimal decline
126 yes yes credible multiple unresponsive efficient minimal decline
127 no yes credible one active super effective minimal decline
128 no yes not credible multiple active super effective minimal track
129 no no credible multiple active super effective minimal decline
130 yes yes credible multiple active super effective minimal decline
131 no yes not credible one unresponsive super effective minimal decline
132 no no credible one unresponsive super effective minimal decline
133 yes yes credible one unresponsive super effective minimal decline
134 no no not credible multiple unresponsive super effective minimal decline
135 yes yes not credible multiple unresponsive super effective minimal decline
136 yes no credible multiple unresponsive super effective minimal decline
137 no yes credible multiple active laborious significant track
138 no yes credible one unresponsive laborious significant coordinate
139 no yes not credible multiple unresponsive laborious significant track
140 no no credible multiple unresponsive laborious significant decline
141 yes yes credible multiple unresponsive laborious significant decline
142 no yes credible one active efficient significant track
143 no yes not credible multiple active efficient significant track
144 no no credible multiple active efficient significant decline
145 yes yes credible multiple active efficient significant decline
146 no yes not credible one unresponsive efficient significant track
147 no no credible one unresponsive efficient significant decline
148 yes yes credible one unresponsive efficient significant decline
149 no no not credible multiple unresponsive efficient significant decline
150 yes yes not credible multiple unresponsive efficient significant decline
151 yes no credible multiple unresponsive efficient significant decline
152 no yes not credible one active super effective significant track
153 no no credible one active super effective significant decline
154 yes yes credible one active super effective significant decline
155 no no not credible multiple active super effective significant coordinate
156 yes yes not credible multiple active super effective significant coordinate
157 yes no credible multiple active super effective significant coordinate
158 no no not credible one unresponsive super effective significant decline
159 yes yes not credible one unresponsive super effective significant decline
160 yes no credible one unresponsive super effective significant decline
161 yes no not credible multiple unresponsive super effective significant coordinate
162 no yes credible multiple unresponsive efficient minimal coordinate
163 no yes credible multiple active super effective minimal coordinate
164 no yes credible one unresponsive super effective minimal coordinate
165 no yes not credible multiple unresponsive super effective minimal track
166 no no credible multiple unresponsive super effective minimal decline
167 yes yes credible multiple unresponsive super effective minimal decline
168 no yes credible multiple unresponsive laborious significant coordinate
169 no yes credible multiple active efficient significant track
170 no yes credible one unresponsive efficient significant coordinate
171 no yes not credible multiple unresponsive efficient significant track
172 no no credible multiple unresponsive efficient significant decline
173 yes yes credible multiple unresponsive efficient significant decline
174 no yes credible one active super effective significant track
175 no yes not credible multiple active super effective significant coordinate
176 no no credible multiple active super effective significant coordinate
177 yes yes credible multiple active super effective significant coordinate
178 no yes not credible one unresponsive super effective significant track
179 no no credible one unresponsive super effective significant decline
180 yes yes credible one unresponsive super effective significant decline
181 no no not credible multiple unresponsive super effective significant coordinate
182 yes yes not credible multiple unresponsive super effective significant coordinate
183 yes no credible multiple unresponsive super effective significant coordinate
184 no yes credible multiple unresponsive super effective minimal coordinate
185 no yes credible multiple unresponsive efficient significant coordinate
186 no yes credible multiple active super effective significant coordinate
187 no yes credible one unresponsive super effective significant coordinate
188 no yes not credible multiple unresponsive super effective significant coordinate
189 no no credible multiple unresponsive super effective significant coordinate
190 yes yes credible multiple unresponsive super effective significant coordinate
191 no yes credible multiple unresponsive super effective significant coordinate