diff --git a/gvt-validation-jar/src/main/java/net/ihe/gazelle/hl7/gvt/GVTtoGazelleValidationReportMapper.java b/gvt-validation-jar/src/main/java/net/ihe/gazelle/hl7/gvt/GVTtoGazelleValidationReportMapper.java
index 9e8a2918f9043b240456fdeba430c28e470e972c..bfdbc1a449e78745a3479f7fc1526c9c08f24aaa 100644
--- a/gvt-validation-jar/src/main/java/net/ihe/gazelle/hl7/gvt/GVTtoGazelleValidationReportMapper.java
+++ b/gvt-validation-jar/src/main/java/net/ihe/gazelle/hl7/gvt/GVTtoGazelleValidationReportMapper.java
@@ -21,7 +21,6 @@ public class GVTtoGazelleValidationReportMapper {
     private static final String WARNING = "Warning";
     private static final String VALIDATION_NOTES = "Validation Notes";
     private static  final String INFORMATIONAL = "Informational";
-    private static  final String CODE_NOT_FOUND = "Code Not Found";
 
     public GVTtoGazelleValidationReportMapper() {
         //Empty constructor
@@ -59,22 +58,15 @@ public class GVTtoGazelleValidationReportMapper {
      */
     private void addValidationConstraint(Entry entry, ValidationResults vr) {
         String entryClassification = entry.getClassification();
-        String entryCategory = entry.getCategory();
 
         switch (entryClassification){
             case ERROR:
                 addError(vr, entry);
                 break;
-            case ALERT:
-                if (CODE_NOT_FOUND.equals(entryCategory)){
-                    addWarning(vr, entry);
-                } else {
-                    addAssertion(vr, entry);
-                }
-                break;
             case WARNING:
                 addWarning(vr,entry);
                 break;
+            case ALERT:
             case AFFIRMATIVE:
             case VALIDATION_NOTES:
             case INFORMATIONAL:
diff --git a/gvt-validation-jar/src/main/resources/application.conf b/gvt-validation-jar/src/main/resources/application.conf
index 7ec071777c16453a80ced2e9ce423eba05dab354..6aba85b659ec235272f622d42cf59744b6867aac 100644
--- a/gvt-validation-jar/src/main/resources/application.conf
+++ b/gvt-validation-jar/src/main/resources/application.conf
@@ -1,6 +1,34 @@
 # Add here custom error levels
-#report {
-#  code-not-found-cs-empty {
-#     classification = ${report.classification.warning}
-#  }
-#}
\ No newline at end of file
+report {
+
+  code-not-found-cs-empty {
+    template = "The value '%s' at location %s was found in the value set %s associated with code system '%s', but code system was not populated in the message at location %s. It is recommended to provide the code and code system."
+    classification = ${report.classification.warning}
+  }
+
+  single-code-cs-not-found {
+    template = "Code '%s' from code system '%s' was not found in location %s, but Code System was not populated at location %s. It is recommended to provide the code and code system."
+    classification = ${report.classification.warning}
+  }
+
+  cc-code-failure-notfound-codesys {
+    classification = ${report.classification.warning}
+  }
+
+  code-not-found-simple{
+    classification = ${report.classification.warning}
+  }
+
+  code-not-found-coded-element{
+    classification = ${report.classification.warning}
+  }
+
+  code-not-found-cs{
+    classification = ${report.classification.warning}
+  }
+
+  code-not-found-cs-empty{
+    classification = ${report.classification.warning}
+  }
+
+}
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/java/net.ihe.gazelle.hl7.gvt/GVTtoGazelleValidationReportMapperTest.java b/gvt-validation-jar/src/test/java/net.ihe.gazelle.hl7.gvt/GVTtoGazelleValidationReportMapperTest.java
index a5d181b9bd2b367ca590267c6a548443de807eb9..7bf145b7a19169658082698858215b262d7b6a35 100644
--- a/gvt-validation-jar/src/test/java/net.ihe.gazelle.hl7.gvt/GVTtoGazelleValidationReportMapperTest.java
+++ b/gvt-validation-jar/src/test/java/net.ihe.gazelle.hl7.gvt/GVTtoGazelleValidationReportMapperTest.java
@@ -1,14 +1,23 @@
 package net.ihe.gazelle.hl7.gvt;
 
+import net.ihe.gazelle.hl7.exception.GazelleErrorCode;
 import net.ihe.gazelle.hl7.validator.report.HL7v2ValidationReport;
-import org.apache.log4j.Logger;
+import net.ihe.gazelle.hl7.validator.report.Warning;
 import org.junit.Assert;
 import org.junit.Test;
 
+import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.nio.file.Files;
+import java.nio.file.Paths;
+import java.util.ArrayList;
+import java.util.List;
+
 public class GVTtoGazelleValidationReportMapperTest {
 
     private final String PATHPROFILE_IRELAND = "src/test/resources/messageprofiles/ADT_A03_ADT_A03/";
     private final String PATHPROFILE_INTEROP = "src/test/resources/messageprofiles/ZAM^Z01_AlertCNF/";
+    private final String PATHPROFILE_INTEROP_2 = "src/test/resources/messageprofiles/ MDM^T02^MDM_T02/";
 
     private final String ER7INCORRECTMESSAGE = "MSH|^~\\&|TOREX.HEALTHLINK.12|MATER MISERICORDIAE HOSPITAL^908^L||Smyth, Michael^987654^Medical" +
             " Council No|200805281125||ADT^A03|1633796|P|2.4\n" +
@@ -43,6 +52,9 @@ public class GVTtoGazelleValidationReportMapperTest {
                 "OBX|1|CWE|ACK_RECEPTION_DMP^Accusé de réception DMP^AckMétierZAM|015|Z^^HL70136||||||F|";
         gvtValidator = new GVTValidator(PATHPROFILE_INTEROP, ZAMNOCODEMESSAGE);
         gvtValidator.validateMessage(hl7v2ValidationReport);
+        List<Object> notifications = hl7v2ValidationReport.getResults().getNotifications();
+        List<Warning> warnings = extractWarningsWithSpecificGazelleError(notifications, GazelleErrorCode.CODE_NOT_FOUND);
+        Assert.assertEquals(1, warnings.size());
         Assert.assertEquals("PASSED", hl7v2ValidationReport.getOverview().getValidationTestResult());
     }
 
@@ -56,4 +68,31 @@ public class GVTtoGazelleValidationReportMapperTest {
         gvtValidator.validateMessage(hl7v2ValidationReport);
         Assert.assertEquals("PASSED", hl7v2ValidationReport.getOverview().getValidationTestResult());
     }
+
+    @Test
+    public void testConvertGVTReportToGazelleReportSingleCodeNotFound() throws IOException {
+        String pathMessage = "src/test/resources/messages_examples/message_MDM_T02.hl7";
+        String content = new String(Files.readAllBytes(Paths.get(pathMessage)), StandardCharsets.UTF_8);
+        gvtValidator = new GVTValidator(PATHPROFILE_INTEROP_2, content);
+        gvtValidator.validateMessage(hl7v2ValidationReport);
+        List<Object> notifications = hl7v2ValidationReport.getResults().getNotifications();
+        List<Warning> warnings = extractWarningsWithSpecificGazelleError(notifications, GazelleErrorCode.SINGLE_CODE_FAILURE);
+        Assert.assertEquals(1, warnings.size());
+        Assert.assertEquals("PASSED", hl7v2ValidationReport.getOverview().getValidationTestResult());
+
+    }
+
+
+    private List<Warning> extractWarningsWithSpecificGazelleError(List<Object> notifications, GazelleErrorCode givenGazelleErrorCode) {
+        List<Warning> warnings = new ArrayList<>();
+        for (Object notification : notifications) {
+            if (notification instanceof Warning) {
+                Warning warning = (Warning) notification;
+                if (warning.getGazelleErrorCode().equals(givenGazelleErrorCode)){
+                    warnings.add((Warning) notification);
+                }
+            }
+        }
+        return warnings;
+    }
 }
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/CoConstraints.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/CoConstraints.xml
new file mode 100755
index 0000000000000000000000000000000000000000..05e5c8844ee8521e0e8b729858ac1a47bf6c0fc9
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/CoConstraints.xml	
@@ -0,0 +1 @@
+<CoConstraintContext ID="f19e4aee-25c4-4d08-b78d-95a5e0b30d85" />
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Constraints.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Constraints.xml
new file mode 100755
index 0000000000000000000000000000000000000000..c318e7f76fb84b998394511ecc54a354eb0f9775
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Constraints.xml	
@@ -0,0 +1 @@
+<ConformanceContext xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Jungyubw/NIST_healthcare_hl7_v2_profile_schema/master/Schema/NIST%20Validation%20Schema/ConformanceContext.xsd" UUID="885a9f36-0e0a-4f34-bad4-58e65492d674"><MetaData Name="Transmission de documents CDA en HL7v2 / Transmission au LPS d'un document provenant d'un courriel MSSanté (v3.1)" OrgName="No Org Info" Version="2.6" Date="No Date Info" /><Predicates><Datatype><ByID ID="XPN_FR-INS_2-5"><Predicate Target="1[1]" TrueUsage="R" FalseUsage="O"><Description>If  XPN.7 (Name Type Code)  contains the value 'L' (Case Sensitive). </Description><Condition><PlainText Path="7[1]" Text="L" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate><Predicate Target="2[1]" TrueUsage="R" FalseUsage="O"><Description>If  XPN.7 (Name Type Code)  contains the value 'L' (Case Sensitive). </Description><Condition><PlainText Path="7[1]" Text="L" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate><Predicate Target="3[1]" TrueUsage="R" FalseUsage="O"><Description>If  XPN.7 (Name Type Code)  contains the value 'L' (Case Sensitive). </Description><Condition><PlainText Path="7[1]" Text="L" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="XCN_FR"><Predicate Target="13[1]" TrueUsage="R" FalseUsage="O"><Description>If  XCN.1 (ID Number)  is valued </Description><Condition><Presence Path="1[1]" /></Condition></Predicate><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XCN.2.1 (Surname)  is valued  OR  XCN.3 (Given Name)  is valued  )</Description><Condition><OR><Presence Path="3[1]" /><Presence Path="2[1].1[1]" /></OR></Condition></Predicate></ByID><ByID ID="XTN_FR_2-5"><Predicate Target="12[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XTN.2 (Telecommunication Use Code)  is not valued  OR  XTN.2 (Telecommunication Use Code)  does not contain the value 'NET'.  )</Description><Condition><OR><NOT><PlainText Path="2[1]" Text="NET" IgnoreCase="false" NotPresentBehavior="FAIL" /></NOT><NOT><Presence Path="2[1]" /></NOT></OR></Condition></Predicate><Predicate Target="4[1]" TrueUsage="R" FalseUsage="O"><Description>If  XTN.2 (Telecommunication Use Code)  contains the value 'NET'. </Description><Condition><PlainText Path="2[1]" Text="NET" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="XAD_FR-INS_2-5"><Predicate Target="9[1]" TrueUsage="R" FalseUsage="O"><Description>If  XAD.7 (Address Type)  contains the value 'BDL' (Case Sensitive). </Description><Condition><PlainText Path="7[1]" Text="BDL" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="HD_FR"><Predicate Target="2[1]" TrueUsage="R" FalseUsage="O"><Description>If  HD.3 (Universal ID Type)  is valued </Description><Condition><Presence Path="3[1]" /></Condition></Predicate><Predicate Target="3[1]" TrueUsage="R" FalseUsage="O"><Description>If  HD.2 (Universal ID)  is valued </Description><Condition><Presence Path="2[1]" /></Condition></Predicate></ByID><ByID ID="XCN_FR-MSS_2-9"><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XCN.2 (Family Name)  is valued  OR  XCN.3 (Given Name)  is valued  )</Description><Condition><OR><Presence Path="3[1]" /><Presence Path="2[1]" /></OR></Condition></Predicate></ByID><ByID ID="EI_FR"><Predicate Target="2[1]" TrueUsage="R" FalseUsage="O"><Description>If (  EI.3 (Universal ID)  is not valued  AND  EI.4 (Universal ID Type)  is not valued  )</Description><Condition><AND><NOT><Presence Path="3[1]" /></NOT><NOT><Presence Path="4[1]" /></NOT></AND></Condition></Predicate><Predicate Target="3[1]" TrueUsage="R" FalseUsage="O"><Description>If (  EI.2 (Namespace ID)  is not valued  OR  EI.4 (Universal ID Type)  is valued  )</Description><Condition><OR><Presence Path="4[1]" /><NOT><Presence Path="2[1]" /></NOT></OR></Condition></Predicate><Predicate Target="4[1]" TrueUsage="R" FalseUsage="O"><Description>If (  EI.2 (Namespace ID)  is not valued  OR  EI.3 (Universal ID)  is valued  )</Description><Condition><OR><NOT><Presence Path="2[1]" /></NOT><Presence Path="3[1]" /></OR></Condition></Predicate></ByID><ByID ID="XTN_FR"><Predicate Target="12[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XTN.3 (Telecommunication Equipment Type)  is valued  AND (  XTN.2 (Telecommunication Use Code)  is not valued  OR  XTN.2 (Telecommunication Use Code)  does not contain the value 'NET'.  ) )</Description><Condition><AND><Presence Path="3[1]" /><OR><NOT><Presence Path="2[1]" /></NOT><NOT><PlainText Path="2[1]" Text="NET" IgnoreCase="false" NotPresentBehavior="FAIL" /></NOT></OR></AND></Condition></Predicate><Predicate Target="4[1]" TrueUsage="R" FalseUsage="O"><Description>If  XTN.2 (Telecommunication Use Code)  contains the value 'NET'. </Description><Condition><PlainText Path="2[1]" Text="NET" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="XCN_FR-PRT_2-9"><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XCN.2 (Family Name)  is valued  OR  XCN.3 (Given Name)  is valued  )</Description><Condition><OR><Presence Path="3[1]" /><Presence Path="2[1]" /></OR></Condition></Predicate></ByID><ByID ID="EI_FR-MSH2"><Predicate Target="3[1]" TrueUsage="R" FalseUsage="O"><Description>If  EI.4 (Universal ID Type)  is valued </Description><Condition><Presence Path="4[1]" /></Condition></Predicate><Predicate Target="4[1]" TrueUsage="R" FalseUsage="O"><Description>If  EI.3 (Universal ID)  is valued </Description><Condition><Presence Path="3[1]" /></Condition></Predicate></ByID><ByID ID="CX_FR_2-5"><Predicate Target="7[1]" TrueUsage="R" FalseUsage="O"><Description>If  CX.5 (Identifier Type Code)  contains the value 'INS-C'. </Description><Condition><PlainText Path="5[1]" Text="INS-C" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="XCN_FR_2-5"><Predicate Target="13[1]" TrueUsage="R" FalseUsage="O"><Description>If  XCN.1 (ID Number)  is valued </Description><Condition><Presence Path="1[1]" /></Condition></Predicate><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XCN.2 (Family Name)  is valued  OR  XCN.3 (Given Name)  is valued  )</Description><Condition><OR><Presence Path="3[1]" /><Presence Path="2[1]" /></OR></Condition></Predicate></ByID><ByID ID="XCN_FR_2-9"><Predicate Target="13[1]" TrueUsage="R" FalseUsage="O"><Description>If  XCN.1 (Person Identifier)  is valued </Description><Condition><Presence Path="1[1]" /></Condition></Predicate><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If (  XCN.2 (Family Name)  is valued  OR  XCN.3 (Given Name)  is valued  )</Description><Condition><OR><Presence Path="3[1]" /><Presence Path="2[1]" /></OR></Condition></Predicate></ByID></Datatype><Segment><ByID ID="PV1_PAM-TCH_2-5"><Predicate Target="19[1]" TrueUsage="R" FalseUsage="RE"><Description>If  PV1-2 (Patient Class)  contains one of the values in the list: ['I','O','R','E'] (Case Sensitive). </Description><Condition><StringList Path="2[1]" CSV="I,O,R,E" IgnoreCase="false" NotPresentBehavior="FAIL" /></Condition></Predicate></ByID><ByID ID="PID_PAM-INS_2-5"><Predicate Target="7[1]" TrueUsage="R" FalseUsage="O"><Description>If ( At least one occurrence of PID-3.5 (Identifier Type Code)  contains the value 'INS' (Case Sensitive).  AND At least one occurrence of PID-32 (Identity Reliability Code)  contains the value 'VALI' (Case Sensitive).  )</Description><Condition><AND><PlainText Path="3[*].5[1]" Text="INS" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /><PlainText Path="32[*]" Text="VALI" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /></AND></Condition></Predicate><Predicate Target="8[1]" TrueUsage="R" FalseUsage="O"><Description>If ( At least one occurrence of PID-3.5 (Identifier Type Code)  contains the value 'INS' (Case Sensitive).  AND At least one occurrence of PID-32 (Identity Reliability Code)  contains the value 'VALI' (Case Sensitive).  )</Description><Condition><AND><PlainText Path="32[*]" Text="VALI" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /><PlainText Path="3[*].5[1]" Text="INS" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /></AND></Condition></Predicate></ByID><ByID ID="PRT_TCH-MSS_2-9"><Predicate Target="5[1]" TrueUsage="R" FalseUsage="O"><Description>If ( All occurrences of PRT-8 (Organization)  is not valued  AND All occurrences of PRT-10 (Device)  is not valued  )</Description><Condition><AND><NOT><Presence Path="8[*]" /></NOT><NOT><Presence Path="10[*]" /></NOT></AND></Condition></Predicate><Predicate Target="8[1]" TrueUsage="R" FalseUsage="O"><Description>If ( All occurrences of PRT-5 (Person)  is not valued  AND All occurrences of PRT-10 (Device)  is not valued  )</Description><Condition><AND><NOT><Presence Path="5[*]" /></NOT><NOT><Presence Path="10[*]" /></NOT></AND></Condition></Predicate><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If ( All occurrences of PRT-5 (Person)  is not valued  AND All occurrences of PRT-8 (Organization)  is not valued  )</Description><Condition><AND><NOT><Presence Path="5[*]" /></NOT><NOT><Presence Path="8[*]" /></NOT></AND></Condition></Predicate></ByID><ByID ID="PRT_TCH-DMP_2-9"><Predicate Target="5[1]" TrueUsage="R" FalseUsage="O"><Description>If At least one occurrence of PRT-10 (Device)  is not valued </Description><Condition><NOT><Presence Path="10[*]" /></NOT></Condition></Predicate><Predicate Target="10[1]" TrueUsage="R" FalseUsage="O"><Description>If At least one occurrence of PRT-5 (Person)  is not valued </Description><Condition><NOT><Presence Path="5[*]" /></NOT></Condition></Predicate></ByID></Segment><Group /><Message /></Predicates><Constraints><Datatype><ByID ID="DTM_2-5"><Constraint ID="DTM_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD[HH[MM[SS[.S[S[S[S]]]]]]]]][+/-ZZZZ]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8}|\d{10}|\d{12}|\d{14}|\d{14}\.\d|\d{14}\.\d{2}|\d{14}\.\d{3}|\d{14}\.\d{4})([+-]\d{4})?$" /></Assertion></Constraint></ByID><ByID ID="DT_2-9"><Constraint ID="DT_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD]]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8})$" /></Assertion></Constraint></ByID><ByID ID="DT"><Constraint ID="DT_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD]]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8})$" /></Assertion></Constraint></ByID><ByID ID="DTM_2-9"><Constraint ID="DTM_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD[HH[MM[SS[.S[S[S[S]]]]]]]]][+/-ZZZZ]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8}|\d{10}|\d{12}|\d{14}|\d{14}\.\d|\d{14}\.\d{2}|\d{14}\.\d{3}|\d{14}\.\d{4})([+-]\d{4})?$" /></Assertion></Constraint></ByID><ByID ID="DT_2-5"><Constraint ID="DT_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD]]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8})$" /></Assertion></Constraint></ByID><ByID ID="TM"><Constraint ID="TM_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'HH[MM[SS[.S[S[S[S]]]]]][+/-ZZZZ]'.</Description><Assertion><Format Path="." Regex="^(\d{2}|\d{4}|\d{6}|\d{6}\.\d|\d{6}\.\d{2}|\d{6}\.\d{3}|\d{6}\.\d{4})([+-]\d{4})?$" /></Assertion></Constraint></ByID><ByID ID="DTM"><Constraint ID="DTM_DateTimeConstraint"><Description>The value SHALL follow the Date/Time pattern 'YYYY[MM[DD[HH[MM[SS[.S[S[S[S]]]]]]]]][+/-ZZZZ]'.</Description><Assertion><Format Path="." Regex="^(\d{4}|\d{6}|\d{8}|\d{10}|\d{12}|\d{14}|\d{14}\.\d|\d{14}\.\d{2}|\d{14}\.\d{3}|\d{14}\.\d{4})([+-]\d{4})?$" /></Assertion></Constraint></ByID></Datatype><Segment><ByID ID="MSH_TCH-T02"><Constraint ID="MSH-18" Strength="SHALL"><Description>( All occurrences of MSH-18 (Character Set) shall contain the value 'UNICODE UTF-8' drawn from the code system 'HL70211'.  OR All occurrences of MSH-18 (Character Set) shall contain the value '8859/15' drawn from the code system 'HL70211'.  )</Description><Assertion><OR><PlainText Path="18[*]" Text="8859/15" IgnoreCase="false" AtLeastOnce="false" NotPresentBehavior="PASS" /><PlainText Path="18[*]" Text="UNICODE UTF-8" IgnoreCase="false" AtLeastOnce="false" NotPresentBehavior="PASS" /></OR></Assertion></Constraint></ByID><ByID ID="TXA_TCH"><Constraint ID="TXA-1 = 1" Strength="SHALL"><Description> TXA-1 (Set ID- TXA) shall contain the value '1' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="1" IgnoreCase="false" NotPresentBehavior="PASS" /></Assertion></Constraint></ByID><ByID ID="PID_PAM-INS_2-5"><Constraint ID="[INS] Dans le cas où l’on véhicule le matricule INS et que l'identité est qualifiée, le lieu de naissance est obligatoire. Cela se traduit par une adresse avec les caractéristiques suivantes : un champ PID-11.9 pour véhiculer le Code Officiel Géographique (COG) de la commune pour les personnes nées en France ou du pays pour les personnes nées à l’étranger avec le champ PID-11.7 prenant la valeur « BDL ». " Strength="SHALL"><Description>At least one occurrence of PID-11.7 (Address Type) shall contain the value 'BDL' (Case Sensitive). </Description><Assertion><PlainText Path="11[*].7[1]" Text="BDL" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="PASS" /></Assertion></Constraint><Constraint ID="[INS] Dans le cas où l’on véhicule l’INS et que l’identité est qualifiée, le nom de famille (PID-5.1), le premier prénom de l’acte de naissance (PID-5.2) et les prénoms de l’acte de naissance (PID-5.3) sont obligatoires. Le type de nom (PID-5.7) doit prendre la valeur L." Strength="SHALL"><Description>At least one occurrence of PID-5.7 (Name Type Code) shall contain the value 'L' (Case Sensitive). </Description><Assertion><PlainText Path="5[*].7[1]" Text="L" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="PASS" /></Assertion></Constraint><Constraint ID="[INS] Le prénom (PID-5.2) doit correspondre au premier prénom de la liste des prénoms de l'acte de naissance (PID-5.3)." Strength="SHALL"><Description>The first occurrence of PID-5.3 (Second and Further Given Names or Initials Thereof) shall be truncated equivalent to At least one occurrence of PID-5.2 (Given Name)</Description><Assertion><PathValue Path1="5[1].3[1]" Operator="EQ" Path2="5[*].2[1]" NotPresentBehavior="PASS" Truncated="true" IdenticalEquality="false" Path2Mode="AtLeastOne" /></Assertion></Constraint></ByID></Segment><Group><ByID ID="6616a2f88b87bc0006c99908-9"><Constraint ID="Position - OBX 13" Strength="SHALL"><Description>If  OBSERVATION.OBX-1 (Set ID - OBX)  contains the value '13' (Case Sensitive).  then  OBSERVATION.OBX-3.1 (Identifier) shall contain the value 'CORPSMAIL_PATIENT' (Case Sensitive). </Description><Assertion><IMPLY><PlainText Path="1[1].1[1]" Text="13" IgnoreCase="false" NotPresentBehavior="FAIL" /><PlainText Path="1[1].3[1].1[1]" Text="CORPSMAIL_PATIENT" IgnoreCase="false" NotPresentBehavior="FAIL" /></IMPLY></Assertion></Constraint><Constraint ID="Position - OBX 12" Strength="SHALL"><Description>If  OBSERVATION.OBX-1 (Set ID - OBX)  contains the value '12' (Case Sensitive).  then  OBSERVATION.OBX-3.1 (Identifier) shall contain one of the values in the list: ['CORPSMAIL_PS','CORPSMAIL_PATIENT'] (Case Sensitive). </Description><Assertion><IMPLY><PlainText Path="1[1].1[1]" Text="12" IgnoreCase="false" NotPresentBehavior="FAIL" /><StringList Path="1[1].3[1].1[1]" CSV="CORPSMAIL_PS,CORPSMAIL_PATIENT" IgnoreCase="false" NotPresentBehavior="FAIL" /></IMPLY></Assertion></Constraint><Constraint ID="Au moins un segment PRT est requis au niveau du premier groupe OBSERVATION. Le message doit contenir au moins l'expéditeur en cas de publication sur le DMP et au moins un destinataire en cas d'échange via MSSanté " Strength="SHALL"><Description>If  OBSERVATION.OBX-1 (Set ID - OBX)  contains the value '1' (Case Sensitive).  then at least one occurrence of OBSERVATION.PRT-4.1 (Identifier) shall contain one of the values in the list: ['SB','RCT'] (Case Sensitive). </Description><Assertion><IMPLY><PlainText Path="1[1].1[1]" Text="1" IgnoreCase="false" NotPresentBehavior="FAIL" /><StringList Path="2[*].4[1].1[1]" CSV="SB,RCT" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /></IMPLY></Assertion></Constraint><Constraint ID="OBX-1" Strength="SHALL"><Description> OBSERVATION.OBX-1 (Set ID - OBX) shall be valued sequentially starting with the value '1'. </Description><Assertion><SetID Path="1[1].1[1]" /></Assertion></Constraint></ByID></Group><Message><ByID ID="6616a2f88b87bc0006c99908"><Constraint ID="OBR-4 = OBX-3" Strength="SHALL"><Description>1 occurrence of OBSERVATION.OBX-3.1 (Identifier) shall be identical to  COMMON_ORDER.OBR-4.1 (Identifier)</Description><Assertion><PathValue Path1="9[*].1[1].3[1].1[1]" Operator="EQ" Path2="7[1].3[1].4[1].1[1]" NotPresentBehavior="PASS" Truncated="false" IdenticalEquality="true" Path1Mode="1" /></Assertion></Constraint></ByID></Message></Constraints></ConformanceContext>
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Profile.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Profile.xml
new file mode 100755
index 0000000000000000000000000000000000000000..36f374fb523f8e7e2d04f9f7390a35255dfb9539
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Profile.xml	
@@ -0,0 +1,2 @@
+<?xml version="1.0"?>
+<ConformanceProfile xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Jungyubw/NIST_healthcare_hl7_v2_profile_schema/master/Schema/NIST%20Validation%20Schema/Profile.xsd" ID="c552355a-141c-4d14-84e0-fe15e97be3e8"><MetaData Name="Transmission de documents CDA en HL7v2 / Transmission au LPS d'un document provenant d'un courriel MSSanté (v3.1)" OrgName="No Org Info" Version="null" Date="No Date Info" SpecificationName="No Version Info" /><Messages><Message ID="6616a2f88b87bc0006c99908" Name="CISIS-CDA_HL7_V2-MDM^T02^MDM_T02" Type="MDM" Event="T02" StructID="MDM_T02" Description="MDM de transmission d'un document CDA v2.1 "><Segment Ref="MSH_TCH-T02" Usage="R" Min="1" Max="1" /><Segment Ref="SFT_FR" Usage="O" Min="0" Max="*" /><Segment Ref="UAC" Usage="O" Min="0" Max="1" /><Segment Ref="EVN_FR" Usage="R" Min="1" Max="1" /><Segment Ref="PID_PAM-FR_2-5" Usage="R" Min="1" Max="1" /><Segment Ref="PV1_PAM-TCH_2-5" Usage="R" Min="1" Max="1" /><Group ID="6616a2f88b87bc0006c99908-7" Name="COMMON_ORDER" Usage="R" Min="1" Max="1"><Segment Ref="ORC_CISIS-02" Usage="R" Min="1" Max="1" /><Group ID="6616a2f88b87bc0006c99908-7.2" Name="TIMING" Usage="O" Min="0" Max="*"><Segment Ref="TQ1" Usage="R" Min="1" Max="1" /><Segment Ref="TQ2_FR" Usage="O" Min="0" Max="*" /></Group><Segment Ref="OBR_FR_TCH" Usage="R" Min="1" Max="1" /><Segment Ref="NTE_FR" Usage="O" Min="0" Max="*" /></Group><Segment Ref="TXA_TCH" Usage="R" Min="1" Max="1" /><Group ID="6616a2f88b87bc0006c99908-9" Name="OBSERVATION" Usage="R" Min="11" Max="*"><Segment Ref="OBX" Usage="R" Min="1" Max="1" /><Segment Ref="PRT_TCH_2-9" Usage="C" Min="0" Max="*" /><Segment Ref="NTE_FR" Usage="O" Min="0" Max="*" /></Group></Message></Messages><Segments><Segment Label="OBX_MAIL-PAT" ID="OBX_MAIL-PAT" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="CWE" Datatype="CWE" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="ED" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MAIL-PAT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="ED" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="MSH_TCH-T02" ID="MSH_TCH-T02" Name="MSH" Version="2.6" Description="Message Header"><Field Name="Field Separator" Usage="R" Datatype="ST" ConstantValue="|" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Encoding Characters" Usage="R" Datatype="ST" ConstantValue="^~\&amp;" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Sending Application" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Sending Facility" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Receiving Application" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Receiving Facility" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Date/Time of Message" Usage="R" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="1" Max="1" /><Field Name="Security" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="40" Min="0" Max="1" /><Field Name="Message Type" Usage="R" Datatype="MSG" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Message Control ID" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" Min="1" Max="1" /><Field Name="Processing ID" Usage="R" Datatype="PT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Version ID" Usage="R" Datatype="VID_TCH-26" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Sequence Number" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="15" Min="0" Max="1" /><Field Name="Continuation Pointer" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="180" Min="0" Max="1" /><Field Name="Accept Acknowledgment Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Application Acknowledgment Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Country Code" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Character Set" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="16" Min="1" Max="*" /><Field Name="Principal Language Of Message" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Alternate Character Set Handling Scheme" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Message Profile Identifier" Usage="R" Datatype="EI_FR-MSH2" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Sending Responsible Organization" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Receiving Responsible Organization" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Sending Network Address" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Receiving Network Address" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="PV1_PAM-TCH_2-5" ID="PV1_PAM-TCH_2-5" Name="PV1" Version="2.5" Description="Patient Visit"><Field Name="Set ID - PV1" Usage="O" Datatype="SI_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Patient Class" Usage="R" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Assigned Patient Location" Usage="C" Datatype="PL_FR-PV1_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Admission Type" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Preadmit Number" Usage="C" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Prior Patient Location" Usage="C" Datatype="PL_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Attending Doctor" Usage="O" Datatype="XCN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Referring Doctor" Usage="O" Datatype="XCN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Consulting Doctor" Usage="X" Datatype="XCN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Hospital Service" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="3" Min="0" Max="1" /><Field Name="Temporary Location" Usage="C" Datatype="PL_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Preadmit Test Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Re-admission Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Admit Source" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="6" Min="0" Max="1" /><Field Name="Ambulatory Status" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="VIP Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Admitting Doctor" Usage="O" Datatype="XCN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Patient Type" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Visit Number" Usage="C" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Financial Class" Usage="O" Datatype="FC_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Charge Price Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Courtesy Code" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Credit Rating" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Contract Code" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Contract Effective Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" Min="0" Max="*" /><Field Name="Contract Amount" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="*" /><Field Name="Contract Period" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="3" Min="0" Max="*" /><Field Name="Interest Code" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Transfer to Bad Debt Code" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Transfer to Bad Debt Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" Min="0" Max="1" /><Field Name="Bad Debt Agency Code" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="10" Min="0" Max="1" /><Field Name="Bad Debt Transfer Amount" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Bad Debt Recovery Amount" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Delete Account Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Delete Account Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" Min="0" Max="1" /><Field Name="Discharge Disposition" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="3" Min="0" Max="1" /><Field Name="Discharged to Location" Usage="O" Datatype="DLD_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Diet Type" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Servicing Facility" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Bed Status" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="0" /><Field Name="Account Status" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Pending Location" Usage="C" Datatype="PL_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Prior Temporary Location" Usage="O" Datatype="PL_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Admit Date/Time" Usage="RE" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Discharge Date/Time" Usage="RE" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Current Patient Balance" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Total Charges" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Total Adjustments" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Total Payments" Usage="O" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="12" Min="0" Max="1" /><Field Name="Alternate Visit ID" Usage="O" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Visit Indicator" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Other Healthcare Provider" Usage="X" Datatype="XCN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /></Segment><Segment Label="TXA_TCH" ID="TXA_TCH" Name="TXA" Version="2.6" Description="Transcription Document Header"><Field Name="Set ID- TXA" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Document Type" Usage="R" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="30" Min="1" Max="1" /><Field Name="Document Content Presentation" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Activity Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Primary Activity Provider Code/Name" Usage="C" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Origination Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Transcription Date/Time" Usage="C" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Edit Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="*" /><Field Name="Originator Code/Name" Usage="O" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Assigned Document Authenticator" Usage="O" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Transcriptionist Code/Name" Usage="C" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Unique Document Number" Usage="R" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Parent Document Number" Usage="C" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Placer Order Number" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Filler Order Number" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Unique Document File Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" Min="0" Max="1" /><Field Name="Document Completion Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="1" Max="1" /><Field Name="Document Confidentiality Status" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Document Availability Status" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Document Storage Status" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Document Change Reason" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" Min="0" Max="1" /><Field Name="Authentication Person, Time Stamp (set)" Usage="C" Datatype="PPN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Distributed Copies (Code and Name of Recipient(s) )" Usage="O" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="ORC_CISIS-02" ID="ORC_CISIS-02" Name="ORC" Version="2.6" Description="Common Order"><Field Name="Order Control" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="1" Max="1" /><Field Name="Placer Order Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Filler Order Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Placer Group Number" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Order Status" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Response Flag" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Quantity/Timing" Usage="B" Datatype="TQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Parent" Usage="O" Datatype="EIP" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Date/Time of Transaction" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Entered By" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Verified By" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ordering Provider" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Enterer's Location" Usage="O" Datatype="PL_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Call Back Phone Number" Usage="O" Datatype="XTN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="2" /><Field Name="Order Effective Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Order Control Code Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Entering Organization" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Entering Device" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Action By" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Advanced Beneficiary Notice Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Ordering Facility Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ordering Facility Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ordering Facility Phone Number" Usage="O" Datatype="XTN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ordering Provider Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Order Status Modifier" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Advanced Beneficiary Notice Override Reason" Usage="C" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Filler's Expected Availability Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Confidentiality Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Order Type" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Enterer Authorization Mode" Usage="O" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Parent Universal Service Identifier" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="EVN_FR" ID="EVN_FR" Name="EVN" Version="2.6" Description="Event Type"><Field Name="Event Type Code" Usage="B" Datatype="ID" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Recorded Date/Time" Usage="R" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="1" Max="1" /><Field Name="Date/Time Planned Event" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Event Reason Code" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="3" Min="0" Max="1" /><Field Name="Operator ID" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Event Occurred" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Event Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_CON-SEC" ID="OBX_CON-SEC" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_CON-SEC" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_INVI-RL" ID="OBX_INVI-RL" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_INVI-RL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="PID_PAM-FR_2-5" ID="PID_PAM-FR_2-5" Name="PID" Version="2.5" Description="Patient Identification"><Field Name="Set ID - PID" Usage="O" Datatype="SI_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Patient ID" Usage="X" Datatype="CX_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Identifier List" Usage="R" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Alternate Patient ID - PID" Usage="X" Datatype="CX_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Name" Usage="R" Datatype="XPN_FR2_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Mother's Maiden Name" Usage="O" Datatype="XPN_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of Birth" Usage="C" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Administrative Sex" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Patient Alias" Usage="X" Datatype="XPN_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Race" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Address" Usage="C" Datatype="XAD_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="County Code" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="0" /><Field Name="Phone Number - Home" Usage="O" Datatype="XTN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Phone Number - Business" Usage="O" Datatype="XTN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Primary Language" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Marital Status" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Religion" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Account Number" Usage="RE" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="SSN Number - Patient" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="16" Min="0" Max="0" /><Field Name="Driver's License Number - Patient" Usage="X" Datatype="DLN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Mother's Identifier" Usage="O" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ethnic Group" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Birth Place" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="250" Min="0" Max="1" /><Field Name="Multiple Birth Indicator" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Birth Order" Usage="C" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Citizenship" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Veterans Military Status" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Nationality" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Death Date and Time" Usage="O" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Patient Death Indicator" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Identity Unknown Indicator" Usage="RE" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Identity Reliability Code" Usage="R" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" Min="1" Max="*" /><Field Name="Last Update Date/Time" Usage="C" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Last Update Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Species Code" Usage="C" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Breed Code" Usage="C" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Strain" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="80" Min="0" Max="1" /><Field Name="Production Class Code" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="2" /><Field Name="Tribal Citizenship" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="OBX_MASQ-PS" ID="OBX_MASQ-PS" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MASQ-PS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="PID_PAM-INS_2-5" ID="PID_PAM-INS_2-5" Name="PID" Version="2.5" Description="Patient Identification"><Field Name="Set ID - PID" Usage="O" Datatype="SI_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Patient ID" Usage="X" Datatype="CX_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Identifier List" Usage="R" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Alternate Patient ID - PID" Usage="X" Datatype="CX_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Name" Usage="R" Datatype="XPN_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Mother's Maiden Name" Usage="O" Datatype="XPN_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of Birth" Usage="C" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Administrative Sex" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Patient Alias" Usage="X" Datatype="XPN_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Race" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Address" Usage="R" Datatype="XAD_FR-INS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="County Code" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="0" /><Field Name="Phone Number - Home" Usage="O" Datatype="XTN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Phone Number - Business" Usage="O" Datatype="XTN_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Primary Language" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Marital Status" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Religion" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Account Number" Usage="RE" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="SSN Number - Patient" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="16" Min="0" Max="0" /><Field Name="Driver's License Number - Patient" Usage="X" Datatype="DLN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Mother's Identifier" Usage="O" Datatype="CX_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Ethnic Group" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Birth Place" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="250" Min="0" Max="1" /><Field Name="Multiple Birth Indicator" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Birth Order" Usage="C" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Citizenship" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Veterans Military Status" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Nationality" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="0" /><Field Name="Patient Death Date and Time" Usage="O" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Patient Death Indicator" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Identity Unknown Indicator" Usage="RE" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Identity Reliability Code" Usage="R" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" Min="1" Max="*" /><Field Name="Last Update Date/Time" Usage="C" Datatype="TS_FR_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Last Update Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Species Code" Usage="C" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Breed Code" Usage="C" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Strain" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="80" Min="0" Max="1" /><Field Name="Production Class Code" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="2" /><Field Name="Tribal Citizenship" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="NTE_FR" ID="NTE_FR" Name="NTE" Version="2.6" Description="Notes and Comments"><Field Name="Set ID - NTE" Usage="O" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Source of Comment" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="8" Min="0" Max="1" /><Field Name="Comment" Usage="O" Datatype="FT" ConfLength="NA" MinLength="1" MaxLength="65536" Min="0" Max="*" /><Field Name="Comment Type" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Entered By" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Entered Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Effective Start Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /></Segment><Segment Label="TQ2_FR" ID="TQ2_FR" Name="TQ2" Version="2.6" Description="Timing/Quantity Relationship"><Field Name="Set ID - TQ2" Usage="O" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Sequence/Results Flag" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Related Placer Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Related Filler Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Related Placer Group Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Sequence Condition Code" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Cyclic Entry/Exit Indicator" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Sequence Condition Time Interval" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Cyclic Group Maximum Number of Repeats" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" Min="0" Max="1" /><Field Name="Special Service Request Relationship" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /></Segment><Segment Label="PRT_REP-DEST_2-9" ID="PRT_REP-DEST_2-9" Name="PRT" Version="2.9" Description="Participation Information"><Field Name="Participation Instance ID" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Action Code" Usage="R" Datatype="ID_2-9" ConstantValue="UC" ConfLength="NA" MinLength="2" MaxLength="2" Min="1" Max="1" /><Field Name="Action Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Role of Participation" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Person" Usage="C" Datatype="XCN_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Person Provider Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization Unit Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization" Usage="C" Datatype="XON_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Location" Usage="C" Datatype="PL_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Device" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Begin Date/Time (arrival time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="End Date/Time (departure time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Qualitative Duration" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Address" Usage="C" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Telecommunication Address" Usage="R" Datatype="XTN_CISIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="UDI Device Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Manufacture Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Expiry Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Lot Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Serial Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Donation Identification" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Type" Usage="C" Datatype="CNE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Preferred Method of Contact" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Contact Identifiers" Usage="O" Datatype="PLN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="PRT_TCH-MSS_2-9" ID="PRT_TCH-MSS_2-9" Name="PRT" Version="2.9" Description="Participation Information"><Field Name="Participation Instance ID" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Action Code" Usage="R" Datatype="ID_2-9" ConstantValue="UC" ConfLength="NA" MinLength="2" MaxLength="2" Min="1" Max="1" /><Field Name="Action Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Role of Participation" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Person" Usage="C" Datatype="XCN_FR-MSS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Person Provider Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization Unit Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization" Usage="C" Datatype="XON_FR-MSS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Location" Usage="C" Datatype="PL_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Device" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Begin Date/Time (arrival time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="End Date/Time (departure time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Qualitative Duration" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Address" Usage="C" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Telecommunication Address" Usage="R" Datatype="XTN_CISIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="UDI Device Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Manufacture Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Expiry Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Lot Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Serial Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Donation Identification" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Type" Usage="C" Datatype="CNE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Preferred Method of Contact" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Contact Identifiers" Usage="O" Datatype="PLN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="OBX_ACK-RCPT" ID="OBX_ACK-RCPT" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_ACK-RCPT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX" ID="OBX" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="CWE" Datatype="CWE" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="O" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Value Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" Min="0" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="C" Datatype="var" ConfLength="NA" MinLength="1" MaxLength="65536" Min="0" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_INVI-PAT" ID="OBX_INVI-PAT" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_INVI-PAT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="PRT_TCH_2-9" ID="PRT_TCH_2-9" Name="PRT" Version="2.9" Description="Participation Information"><Field Name="Participation Instance ID" Usage="C" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Action Code" Usage="R" Datatype="ID_2-9" ConfLength="NA" MinLength="2" MaxLength="2" Min="1" Max="1" /><Field Name="Action Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Role of Participation" Usage="R" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Person" Usage="C" Datatype="XCN_FR-PRT_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Person Provider Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization Unit Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization" Usage="C" Datatype="XON_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Location" Usage="C" Datatype="PL_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Device" Usage="C" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Begin Date/Time (arrival time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="End Date/Time (departure time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Qualitative Duration" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Address" Usage="C" Datatype="XAD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Telecommunication Address" Usage="O" Datatype="XTN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="UDI Device Identifier" Usage="O" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Manufacture Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Expiry Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Lot Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Serial Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Donation Identification" Usage="O" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Type" Usage="C" Datatype="CNE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Preferred Method of Contact" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Contact Identifiers" Usage="O" Datatype="PLN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="OBX_CDA-T02" ID="OBX_CDA-T02" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="CWE" Datatype="CWE" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="ED" Datatype="ED_OBX-CDA" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="ED" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_CDA" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="ED_OBX-CDA" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBR_FR_TCH" ID="OBR_FR_TCH" Name="OBR" Version="2.6" Description="Observation Request"><Field Name="Set ID - OBR" Usage="O" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Placer Order Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Filler Order Number" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Universal Service Identifier" Usage="R" Datatype="CWE_OBR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Priority" Usage="B" Datatype="ID" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Requested Date/Time" Usage="B" Datatype="DTM" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Observation Date/Time #" Usage="C" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation End Date/Time #" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Collection Volume *" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Collector Identifier *" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Specimen Action Code *" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Danger Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Relevant Clinical Information" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="300" Min="0" Max="1" /><Field Name="Specimen Received Date/Time" Usage="B" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Specimen Source" Usage="B" Datatype="SPS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Ordering Provider" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Order Callback Phone Number" Usage="O" Datatype="XTN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="2" /><Field Name="Placer Field 1" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" Min="0" Max="1" /><Field Name="Placer Field 2" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" Min="0" Max="1" /><Field Name="Filler Field 1 +" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" Min="0" Max="1" /><Field Name="Filler Field 2 +" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" Min="0" Max="1" /><Field Name="Results Rpt/Status Chng - Date/Time +" Usage="C" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Charge to Practice +" Usage="O" Datatype="MOC" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Diagnostic Serv Sect ID" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="10" Min="0" Max="1" /><Field Name="Result Status +" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Parent Result +" Usage="O" Datatype="PRL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Quantity/Timing" Usage="B" Datatype="TQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Result Copies To" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Parent" Usage="O" Datatype="EIP" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Transportation Mode" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Reason for Study" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Principal Result Interpreter +" Usage="B" Datatype="NDL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Assistant Result Interpreter +" Usage="B" Datatype="NDL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Technician +" Usage="B" Datatype="NDL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Transcriptionist +" Usage="B" Datatype="NDL" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Scheduled Date/Time +" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Number of Sample Containers *" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" Min="0" Max="1" /><Field Name="Transport Logistics of Collected Sample *" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Collector's Comment *" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Transport Arrangement Responsibility" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Transport Arranged" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" Min="0" Max="1" /><Field Name="Escort Required" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="0" Max="1" /><Field Name="Planned Patient Transport Comment" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Procedure Code" Usage="O" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Procedure Code Modifier" Usage="O" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Placer Supplemental Service Information" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Filler Supplemental Service Information" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Medically Necessary Duplicate Procedure Reason" Usage="C" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Result Handling" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="1" /><Field Name="Parent Universal Service Identifier" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_MSS-PAT" ID="OBX_MSS-PAT" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MSS-PAT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_ACK-LECT" ID="OBX_ACK-LECT" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_ACK-LECT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="PRT_TCH-DMP_2-9" ID="PRT_TCH-DMP_2-9" Name="PRT" Version="2.9" Description="Participation Information"><Field Name="Participation Instance ID" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Action Code" Usage="R" Datatype="ID_2-9" ConstantValue="UC" ConfLength="NA" MinLength="2" MaxLength="2" Min="1" Max="1" /><Field Name="Action Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Role of Participation" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Person" Usage="C" Datatype="XCN_FR-PRT_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Person Provider Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization Unit Type" Usage="C" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Organization" Usage="R" Datatype="XON_FR-DMP_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Location" Usage="C" Datatype="PL_FR_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Device" Usage="C" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Begin Date/Time (arrival time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="End Date/Time (departure time)" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Qualitative Duration" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Address" Usage="C" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Telecommunication Address" Usage="O" Datatype="XTN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="UDI Device Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Manufacture Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Expiry Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Lot Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Serial Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Donation Identification" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Device Type" Usage="C" Datatype="CNE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Preferred Method of Contact" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Contact Identifiers" Usage="O" Datatype="PLN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /></Segment><Segment Label="TQ1" ID="TQ1" Name="TQ1" Version="2.6" Description="Timing/Quantity"><Field Name="Set ID - TQ1" Usage="O" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="0" Max="1" /><Field Name="Quantity" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Repeat Pattern" Usage="O" Datatype="RPT" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Explicit Time" Usage="O" Datatype="TM" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="*" /><Field Name="Relative Time and Units" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Service Duration" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Start date/time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="End date/time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Priority" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Condition text" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="250" Min="0" Max="1" /><Field Name="Text instruction" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="250" Min="0" Max="1" /><Field Name="Conjunction" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="10" Min="0" Max="1" /><Field Name="Occurrence duration" Usage="O" Datatype="CQ" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Total occurrences" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" Min="0" Max="1" /></Segment><Segment Label="OBX_MODIF-CC" ID="OBX_MODIF-CC" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MODIF-CC" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_MAIL-PS" ID="OBX_MAIL-PS" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="CWE" Datatype="CWE" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="ED" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MAIL-PS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="ED" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="OBX_MSS-PS" ID="OBX_MSS-PS" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_MSS-PS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="UAC" ID="UAC" Name="UAC" Version="2.6" Description="User Authentication Credential Segment"><Field Name="User Authentication Credential Type Code" Usage="R" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="User Authentication Credential" Usage="R" Datatype="ED" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /></Segment><Segment Label="OBX_DEST-DMP" ID="OBX_DEST-DMP" Name="OBX" Version="2.6" Description="Observation/Result"><DynamicMapping><Mapping Position="5" Reference="2" SecondReference="3.1"><Case Value="CF" Datatype="CF" /><Case Value="FT" Datatype="FT" /><Case Value="NM" Datatype="NM" /><Case Value="DTM" Datatype="DTM" /><Case Value="XAD" Datatype="XAD" /><Case Value="AD" Datatype="AD" /><Case Value="ST" Datatype="ST" /><Case Value="SN" Datatype="SN" /><Case Value="XON" Datatype="XON" /><Case Value="MO" Datatype="MO" /><Case Value="RP" Datatype="RP" /><Case Value="CX" Datatype="CX" /><Case Value="TX" Datatype="TX" /><Case Value="DT" Datatype="DT" /><Case Value="XTN" Datatype="XTN" /><Case Value="ED" Datatype="ED" /><Case Value="XPN" Datatype="XPN" /><Case Value="CP" Datatype="CP" /><Case Value="XCN" Datatype="XCN" /><Case Value="TM" Datatype="TM" /><Case Value="CWE" Datatype="CWE_CI-SIS" /></Mapping></DynamicMapping><Field Name="Set ID - OBX" Usage="R" Datatype="SI" ConfLength="NA" MinLength="1" MaxLength="4" Min="1" Max="1" /><Field Name="Value Type" Usage="R" Datatype="ID" ConstantValue="CWE" ConfLength="NA" MinLength="1" MaxLength="3" Min="1" Max="1" /><Field Name="Observation Identifier" Usage="R" Datatype="CWE_DEST-DMP" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Observation Sub-ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Observation Value" Usage="R" Datatype="CWE_CI-SIS" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="*" /><Field Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="References Range" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="60" Min="0" Max="1" /><Field Name="Abnormal Flags" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="*" /><Field Name="Probability" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" Min="0" Max="1" /><Field Name="Nature of Abnormal Test" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" Min="0" Max="*" /><Field Name="Observation Result Status" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" Min="1" Max="1" /><Field Name="Effective Date of Reference Range" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="User Defined Access Checks" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="0" Max="1" /><Field Name="Date/Time of the Observation" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Producer's ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Responsible Observer" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Method" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Equipment Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Date/Time of the Analysis" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /><Field Name="Observation Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="*" /><Field Name="Observation Instance Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Mood Code" Usage="C" Datatype="CNE" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Name" Usage="O" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Address" Usage="O" Datatype="XAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /><Field Name="Performing Organization Medical Director" Usage="O" Datatype="XCN_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="0" Max="1" /></Segment><Segment Label="SFT_FR" ID="SFT_FR" Name="SFT" Version="2.6" Description="Software Segment"><Field Name="Software Vendor Organization" Usage="R" Datatype="XON_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" Min="1" Max="1" /><Field Name="Software Certified Version or Release Number" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" Min="1" Max="1" /><Field Name="Software Product Name" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="1" Max="1" /><Field Name="Software Binary ID" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" Min="1" Max="1" /><Field Name="Software Product Information" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="1024" Min="0" Max="1" /><Field Name="Software Install Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" Min="0" Max="1" /></Segment></Segments><Datatypes><Datatype ID="CNE_2-9" Name="CNE" Label="CNE" Version="2.9" Description="Coded with No Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Coding System" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Original Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Second Alternate Coding System" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Coding System Version ID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CWE_INVI-PAT" Name="CWE" Label="CWE_INVI-PAT" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Document Non Visible par le patient" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="XAD_2-9" Name="XAD" Label="XAD" Version="2.9" Description="Extended Address"><Component Name="Street Address" Usage="O" Datatype="SAD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Designation" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="City" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="State or Province" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Country" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Type" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="County/Parish Code" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Census Tract" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Representation Code" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Validity Range" Usage="W" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Temporary Indicator" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Bad Address Indicator" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Usage" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Addressee" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Comment" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Preference Order" Usage="O" Datatype="NM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Protection Code" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Identifier" Usage="O" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="DTM_2-5" Name="DTM" Label="DTM" Version="2.5" Description="Date/Time" /><Datatype ID="CNE" Name="CNE" Label="CNE" Version="2.6" Description="Coded with No Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="EI_2-9" Name="EI" Label="EI" Version="2.9" Description="Entity Identifier"><Component Name="Entity Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Namespace ID" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Universal ID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Universal ID Type" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="OSD" Name="OSD" Label="OSD" Version="2.6" Description="Order Sequence Definition"><Component Name="Sequence/Results Flag" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Placer Order Number: Entity Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Placer Order Number: Namespace ID" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Filler Order Number: Entity Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Filler Order Number: Namespace ID" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Sequence Condition Value" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Maximum Number of Repeats" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Placer Order Number: Universal ID" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Placer Order Number: Universal ID Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Filler Order Number: Universal ID" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Filler Order Number: Universal ID Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="DT_2-9" Name="DT" Label="DT" Version="2.9" Description="Date" /><Datatype ID="DR" Name="DR" Label="DR" Version="2.6" Description="Date/Time Range"><Component Name="Range Start Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Range End Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /></Datatype><Datatype ID="EI" Name="EI" Label="EI" Version="2.6" Description="Entity Identifier"><Component Name="Entity Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Namespace ID" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="FT" Name="FT" Label="FT" Version="2.6" Description="Formatted Text Data" /><Datatype ID="XCN" Name="XCN" Label="XCN" Version="2.6" Description="Extended Composite ID Number and Name for Persons"><Component Name="ID Number" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Family Name" Usage="O" Datatype="FN" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="B" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Identifier Check Digit" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="B" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Professional Suffix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CX_2-5" Name="CX" Label="CX" Version="2.5" Description="Extended Composite ID with Check Digit"><Component Name="ID Number" Usage="R" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Check Digit" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Check Digit Scheme" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Assigning Authority" Usage="O" Datatype="HD_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Expiration Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="SI" Name="SI" Label="SI" Version="2.6" Description="Sequence ID" /><Datatype ID="HD" Name="HD" Label="HD" Version="2.6" Description="Hierarchic Designator"><Component Name="Namespace ID" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="999" /><Component Name="Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="CWE_INVI-RL" Name="CWE" Label="CWE_INVI-RL" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Non visible par les représentants Légaux du patient" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="ST_2-5" Name="ST" Label="ST" Version="2.5" Description="String Data" /><Datatype ID="TS_2-5" Name="TS" Label="TS" Version="2.5" Description="Time Stamp"><Component Name="Time" Usage="R" Datatype="DTM_2-5" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Degree of Precision" Usage="B" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /></Datatype><Datatype ID="ED" Name="ED" Label="ED" Version="2.6" Description="Encapsulated Data"><Component Name="Source Application" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Type of Data" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="11" /><Component Name="Data Subtype" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="32" /><Component Name="Encoding" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Data" Usage="R" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="65536" /></Datatype><Datatype ID="XPN_FR-INS_2-5" Name="XPN" Label="XPN_FR-INS" Version="2.5" Description="Extended Person Name"><Component Name="Family Name" Usage="C" Datatype="FN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Name Type Code" Usage="R" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="XCN_FR" Name="XCN" Label="XCN_FR" Version="2.6" Description="Extended Composite ID Number and Name for Persons"><Component Name="ID Number" Usage="RE" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Family Name" Usage="RE" Datatype="FN" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="RE" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="X" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority" Usage="RE" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Identifier Check Digit" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Identifier Type Code" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="X" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="X" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="X" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Professional Suffix" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Jurisdiction" Usage="X" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="X" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CQ_NIST" Name="CQ_NIST" Label="CQ_NIST" Version="2.6" Description="Composite Quantity with Units"><Component Name="Quantity" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" /><Component Name="Units" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="705" /></Datatype><Datatype ID="MSG" Name="MSG" Label="MSG" Version="2.6" Description="Message Type"><Component Name="Message Code" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Trigger Event" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Message Structure" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="7" /></Datatype><Datatype ID="SNM_2-9" Name="SNM" Label="SNM" Version="2.9" Description="String of Telephone Number Digits" /><Datatype ID="CE_2-5" Name="CE" Label="CE" Version="2.5" Description="Coded Element"><Component Name="Identifier" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /></Datatype><Datatype ID="XTN_FR_2-5" Name="XTN" Label="XTN_FR" Version="2.5" Description="Extended Telecommunication Number"><Component Name="Telephone Number" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Telecommunication Use Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Telecommunication Equipment Type" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Email Address" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Country Code" Usage="X" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Area/City Code" Usage="X" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Local Number" Usage="X" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="9" /><Component Name="Extension" Usage="X" Datatype="NM_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Any Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Extension Prefix" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Speed Dial Code" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Unformatted Telephone number" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="CWE_DEST-DMP" Name="CWE" Label="CWE_DEST-DMP" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Destinataire DMP" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="PLN_2-9" Name="PLN" Label="PLN" Version="2.9" Description="Practitioner License or Other ID Number"><Component Name="ID Number" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Type of ID Number" Usage="R" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="State/other Qualifying Information" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="DT_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XAD_FR_2-5" Name="XAD" Label="XAD_FR" Version="2.5" Description="Extended Address"><Component Name="Street Address" Usage="O" Datatype="SAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Designation" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="City" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="State or Province" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Country" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Address Type" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="County/Parish Code" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Census Tract" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Address Representation Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Validity Range" Usage="X" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="SAD_2-9" Name="SAD" Label="SAD" Version="2.9" Description="Street Address"><Component Name="Street or Mailing Address" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Street Name" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Dwelling Number" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="SAD" Name="SAD" Label="SAD" Version="2.6" Description="Street Address"><Component Name="Street or Mailing Address" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="Street Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Dwelling Number" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /></Datatype><Datatype ID="XAD_FR-INS_2-5" Name="XAD" Label="XAD_FR-INS" Version="2.5" Description="Extended Address"><Component Name="Street Address" Usage="O" Datatype="SAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Designation" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="City" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="State or Province" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Country" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Address Type" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="County/Parish Code" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Census Tract" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Address Representation Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Validity Range" Usage="X" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="HD_FR" Name="HD" Label="HD_FR" Version="2.6" Description="Hierarchic Designator"><Component Name="Namespace ID" Usage="R" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="999" /><Component Name="Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="CWE_MASQ-PS" Name="CWE" Label="CWE_MASQ-PS" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Masqué aux professionnels de Santé" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="NM_2-9" Name="NM" Label="NM" Version="2.9" Description="Numeric" /><Datatype ID="XCN_FR-MSS_2-9" Name="XCN" Label="XCN_FR-MSS" Version="2.9" Description="Extended Composite ID Number and Name for Persons"><Component Name="Person Identifier" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Family Name" Usage="R" Datatype="FN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Source Table" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="R" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Context" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Jurisdiction" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check Scheme" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="NM" Name="NM" Label="NM" Version="2.6" Description="Numeric" /><Datatype ID="RI" Name="RI" Label="RI" Version="2.6" Description="Repeat Interval"><Component Name="Repeat Pattern" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Explicit Time Interval" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="EI_FR" Name="EI" Label="EI_FR" Version="2.6" Description="Entity Identifier"><Component Name="Entity Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Namespace ID" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="CWE_MSS-PS" Name="CWE" Label="CWE_MSS-PS" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Destinataire (Professionnel de Santé, organisation ou BAL applicative)" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="SAD_FR" Name="SAD" Label="SAD_FR" Version="2.6" Description="Street Address"><Component Name="Street or Mailing Address" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="Street Name" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Dwelling Number" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /></Datatype><Datatype ID="IS_2-5" Name="IS" Label="IS" Version="2.5" Description="String Data" /><Datatype ID="CWE_MSS-PAT" Name="CWE" Label="CWE_MSS-PAT" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Destinataire Patient" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="CWE_MODIF-CC" Name="CWE" Label="CWE_MODIF-CC" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Modification Confidentiality Code" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="XTN_2-9" Name="XTN" Label="XTN" Version="2.9" Description="Extended Telecommunication Number"><Component Name="Telephone Number" Usage="W" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Telecommunication Use Code" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Telecommunication Equipment Type" Usage="R" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Communication Address" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Country Code" Usage="O" Datatype="SNM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Area/City Code" Usage="O" Datatype="SNM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Local Number" Usage="C" Datatype="SNM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Extension" Usage="C" Datatype="SNM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Any Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Extension Prefix" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Speed Dial Code" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Unformatted Telephone Number" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Start Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Protection Code" Usage="O" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Shared Telecommunication Identifier" Usage="O" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Preference Order" Usage="O" Datatype="NM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="SI_2-5" Name="SI" Label="SI" Version="2.5" Description="Sequence ID" /><Datatype ID="XAD" Name="XAD" Label="XAD" Version="2.6" Description="Extended Address"><Component Name="Street Address" Usage="O" Datatype="SAD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="City" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="State or Province" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Country" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Address Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="County/Parish Code" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Census Tract" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Address Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Validity Range" Usage="B" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Temporary Indicator" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Bad Address Indicator" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Usage" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="44" /><Component Name="Addressee" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Comment" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Preference Order" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="2" /><Component Name="Protection Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CF" Name="CF" Label="CF" Version="2.6" Description="Coded Element with Formatted Values"><Component Name="Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Formatted Text" Usage="O" Datatype="FT" ConfLength="NA" MinLength="1" MaxLength="65536" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Formatted Text" Usage="O" Datatype="FT" ConfLength="NA" MinLength="1" MaxLength="65536" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /></Datatype><Datatype ID="DT" Name="DT" Label="DT" Version="2.6" Description="Date" /><Datatype ID="DTM_2-9" Name="DTM" Label="DTM" Version="2.9" Description="Date/Time" /><Datatype ID="XON_FR-MSS_2-9" Name="XON" Label="XON_FR-MSS" Version="2.9" Description="Extended Composite Name and Identification Number for Organizations"><Component Name="Organization Name" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Name Type Code" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="ID Number" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="R" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="R" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="X" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Identifier" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CNN" Name="CNN" Label="CNN" Version="2.6" Description="Composite ID Number and Name Simplified"><Component Name="ID Number" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Family Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Given Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority   - Namespace ID" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Assigning Authority  - Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Authority  - Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="-" Name="-" Label="-" Version="2.6" Description="withdrawn" /><Datatype ID="XTN_FR" Name="XTN" Label="XTN_FR" Version="2.6" Description="Extended Telecommunication Number"><Component Name="Telephone Number" Usage="X" Datatype="-" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Telecommunication Use Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Telecommunication Equipment Type" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Communication Address" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Country Code" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Area/City Code" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Local Number" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="9" /><Component Name="Extension" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Any Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Extension Prefix" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Speed Dial Code" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Unformatted Telephone number" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Effective Start Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Protection Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Shared Telecommunication Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Preference Order" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="2" /></Datatype><Datatype ID="CX" Name="CX" Label="CX" Version="2.6" Description="Extended Composite ID with Check Digit"><Component Name="ID Number" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Identifier Check Digit" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Assigning Authority" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="DT" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Expiration Date" Usage="O" Datatype="DT" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CP" Name="CP" Label="CP" Version="2.6" Description="Composite Price"><Component Name="Price" Usage="R" Datatype="MO" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Price Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" /><Component Name="From Value" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" /><Component Name="To Value" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" /><Component Name="Range Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Range Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /></Datatype><Datatype ID="XON_FR-DMP_2-9" Name="XON" Label="XON_FR-DMP" Version="2.9" Description="Extended Composite Name and Identification Number for Organizations"><Component Name="Organization Name" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Name Type Code" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="ID Number" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="R" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="R" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="X" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Identifier" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CWE_CI-SIS" Name="CWE" Label="CWE_CI-SIS" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="PRL" Name="PRL" Label="PRL" Version="2.6" Description="Parent Result Link"><Component Name="Parent Observation Identifier" Usage="R" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Parent Observation Sub-identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Parent Observation Value Descriptor" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="250" /></Datatype><Datatype ID="CWE_ACK-LECT" Name="CWE" Label="CWE_ACK-LECT" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Accusé de lecture" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="DT_2-5" Name="DT" Label="DT" Version="2.5" Description="Date" /><Datatype ID="ST_2-9" Name="ST" Label="ST" Version="2.9" Description="String Data" /><Datatype ID="XON_FR" Name="XON" Label="XON_FR" Version="2.6" Description="Extended Composite Name and Identification Number for Organizations"><Component Name="Organization Name" Usage="RE" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Organization Name Type Code" Usage="X" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="ID Number" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Identifier Check Digit" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Assigning Authority" Usage="RE" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="RE" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="X" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Organization Identifier" Usage="RE" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="64" /></Datatype><Datatype ID="DLD_2-5" Name="DLD" Label="DLD" Version="2.5" Description="Discharge Location and Date"><Component Name="Discharge Location" Usage="R" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Effective Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="CWE_2-9" Name="CWE" Label="CWE" Version="2.9" Description="Coded with Exceptions"><Component Name="Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Coding System" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Alternate Coding System" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Original Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Identifier" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Text" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name of Second Alternate Coding System" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Coding System Version ID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Alternate Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Coding System OID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Value Set OID" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second Alternate Value Set Version ID" Usage="C" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="FN_2-9" Name="FN" Label="FN" Version="2.9" Description="Family Name"><Component Name="Surname" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Own Surname Prefix" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Own Surname" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Surname Prefix from Partner/Spouse" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Surname from Partner/Spouse" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="IS_2-9" Name="IS" Label="IS" Version="2.9" Description="Coded Value for User-Defined Tables" /><Datatype ID="TS_FR_2-5" Name="TS" Label="TS_FR" Version="2.5" Description="Time Stamp"><Component Name="Time" Usage="R" Datatype="DTM_2-5" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Degree of Precision" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /></Datatype><Datatype ID="RP" Name="RP" Label="RP" Version="2.6" Description="Reference Pointer"><Component Name="Pointer" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="999" /><Component Name="Application ID" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Type of Data" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="11" /><Component Name="Subtype" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="32" /></Datatype><Datatype ID="FC_2-5" Name="FC" Label="FC" Version="2.5" Description="Financial Class"><Component Name="Financial Class Code" Usage="R" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Effective Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XCN_2-5" Name="XCN" Label="XCN" Version="2.5" Description="Extended Composite ID Number and Name for Persons"><Component Name="ID Number" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Family Name" Usage="O" Datatype="FN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="B" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority" Usage="O" Datatype="HD_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Identifier Check Digit" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Check Digit Scheme" Usage="C" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="O" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="B" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="O" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="PPN" Name="PPN" Label="PPN" Version="2.6" Description="Performing Person Time Stamp"><Component Name="ID Number" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Family Name" Usage="O" Datatype="FN" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="B" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Identifier Check Digit" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Date/Time Action Performed" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Name Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="B" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Professional Suffix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="NM_2-5" Name="NM" Label="NM" Version="2.5" Description="Numeric" /><Datatype ID="TQ" Name="TQ" Label="TQ" Version="2.6" Description="Timing Quantity"><Component Name="Quantity" Usage="O" Datatype="CQ_NIST" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Interval" Usage="O" Datatype="RI" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Duration" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Start Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="End Date/Time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Priority" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Condition" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Text" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="200" /><Component Name="Conjunction" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Order Sequencing" Usage="O" Datatype="OSD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Occurrence Duration" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Total Occurrences" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="4" /></Datatype><Datatype ID="CWE" Name="CWE" Label="CWE" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="AD" Name="AD" Label="AD" Version="2.6" Description="Address"><Component Name="Street Address" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="Other Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="City" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="State or Province" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Country" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Address Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /></Datatype><Datatype ID="TM" Name="TM" Label="TM" Version="2.6" Description="Time" /><Datatype ID="PL_2-9" Name="PL" Label="PL" Version="2.9" Description="Person Location"><Component Name="Point of Care" Usage="C" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Room" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Bed" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Facility" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Status" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Person Location Type" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Building" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Floor" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Description" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Comprehensive Location Identifier" Usage="O" Datatype="EI_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority for Location" Usage="O" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XCN_FR-PRT_2-9" Name="XCN" Label="XCN_FR-PRT" Version="2.9" Description="Extended Composite ID Number and Name for Persons"><Component Name="Person Identifier" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Family Name" Usage="R" Datatype="FN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="R" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Source Table" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="R" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Context" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Jurisdiction" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check Scheme" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="DR_NIST_2-5" Name="DR_NIST" Label="DR_NIST" Version="2.5" Description="Date/Time Range"><Component Name="Range Start Date/Time" Usage="O" Datatype="DTM_2-5" ConfLength="NA" MinLength="1" MaxLength="26" /><Component Name="Range End Date/Time" Usage="O" Datatype="DTM_2-5" ConfLength="NA" MinLength="1" MaxLength="26" /></Datatype><Datatype ID="XAD_FR" Name="XAD" Label="XAD_FR" Version="2.6" Description="Extended Address"><Component Name="Street Address" Usage="O" Datatype="SAD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Other Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="120" /><Component Name="City" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="State or Province" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Zip or Postal Code" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="12" /><Component Name="Country" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Address Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Other Geographic Designation" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="County/Parish Code" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Census Tract" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Address Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Validity Range" Usage="X" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Temporary Indicator" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Bad Address Indicator" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Address Usage" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="44" /><Component Name="Addressee" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Comment" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Preference Order" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="2" /><Component Name="Protection Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Address Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="VID_TCH-26" Name="VID" Label="VID_TCH-26" Version="2.6" Description="Version Identifier"><Component Name="Version ID" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Internationalization Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="International Version ID" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="EI_FR-MSH2" Name="EI" Label="EI_FR-MSH2" Version="2.6" Description="Entity Identifier"><Component Name="Entity Identifier" Usage="R" Datatype="ST" ConstantValue="2.1" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Namespace ID" Usage="R" Datatype="IS" ConstantValue="CISIS_CDA_HL7_V2" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Universal ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Universal ID Type" Usage="C" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="CWE_MAIL-PAT" Name="CWE" Label="CWE_MAIL-PAT" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Corps du mail pour le patient" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="ID" Name="ID" Label="ID" Version="2.6" Description="Coded Value for HL7 Defined Tables" /><Datatype ID="PL_FR-PV1_2-5" Name="PL" Label="PL_FR-PV1" Version="2.5" Description="Person Location"><Component Name="Point of Care" Usage="RE" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Room" Usage="RE" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Bed" Usage="RE" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Facility" Usage="RE" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Status" Usage="RE" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Person Location Type" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Building" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Floor" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Location Description" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Comprehensive Location Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority for Location" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="FN" Name="FN" Label="FN" Version="2.6" Description="Family Name"><Component Name="Surname" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Own Surname Prefix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Own Surname" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Surname Prefix from Partner/Spouse" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Surname from Partner/Spouse" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /></Datatype><Datatype ID="HD_2-5" Name="HD" Label="HD" Version="2.5" Description="Hierarchic Designator"><Component Name="Namespace ID" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Universal ID" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Universal ID Type" Usage="C" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="6" /></Datatype><Datatype ID="TX" Name="TX" Label="TX" Version="2.6" Description="Text Data" /><Datatype ID="CWE_CON-SEC" Name="CWE" Label="CWE_CON-SEC" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Connexion Secrete" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="DLN_2-5" Name="DLN" Label="DLN" Version="2.5" Description="Driver_s License Number"><Component Name="License Number" Usage="R" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Issuing State, Province, Country" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Expiration Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="24" /></Datatype><Datatype ID="DTM" Name="DTM" Label="DTM" Version="2.6" Description="Date/Time" /><Datatype ID="NDL" Name="NDL" Label="NDL" Version="2.6" Description="Name with Date and Location"><Component Name="Name" Usage="O" Datatype="CNN" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Start Date/time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="End Date/time" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Point of Care" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Room" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Bed" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Facility" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Status" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Patient Location Type" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Building" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Floor" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /></Datatype><Datatype ID="XPN" Name="XPN" Label="XPN" Version="2.6" Description="Extended Person Name"><Component Name="Family Name" Usage="O" Datatype="FN" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="B" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Name Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="B" Datatype="DR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Professional Suffix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="GTS" Name="GTS" Label="GTS" Version="2.6" Description="General Timing Specification" /><Datatype ID="SPS" Name="SPS" Label="SPS" Version="2.6" Description="Specimen Source"><Component Name="Specimen Source Name or Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Additives" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Specimen Collection Method" Usage="O" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="200" /><Component Name="Body Site" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Site Modifier" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Collection Method Modifier Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Specimen Role" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="SN" Name="SN" Label="SN" Version="2.6" Description="Structured Numeric"><Component Name="Comparator" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="2" /><Component Name="Num1" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Separator/Suffix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Num2" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="15" /></Datatype><Datatype ID="RPT" Name="RPT" Label="RPT" Version="2.6" Description="Repeat Pattern"><Component Name="Repeat Pattern Code" Usage="R" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Calendar Alignment" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="2" /><Component Name="Phase Range Begin Value" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Phase Range End Value" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Period Quantity" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Period Units" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Institution Specified Time" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Event" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Event Offset Quantity" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Event Offset Units" Usage="C" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="General Timing Specification" Usage="O" Datatype="GTS" ConfLength="NA" MinLength="1" MaxLength="200" /></Datatype><Datatype ID="MO" Name="MO" Label="MO" Version="2.6" Description="Money"><Component Name="Quantity" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" /><Component Name="Denomination" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /></Datatype><Datatype ID="FN_2-5" Name="FN" Label="FN" Version="2.5" Description="Family Name"><Component Name="Surname" Usage="R" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Own Surname Prefix" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Own Surname" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Surname Prefix From Partner/Spouse" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Surname From Partner/Spouse" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="50" /></Datatype><Datatype ID="IS" Name="IS" Label="IS" Version="2.6" Description="Coded Value for User-Defined Tables" /><Datatype ID="PL_FR_2-5" Name="PL" Label="PL_FR" Version="2.5" Description="Person Location"><Component Name="Point of Care" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Room" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Bed" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Status" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Person Location Type" Usage="C" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Building" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Floor" Usage="O" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Location Description" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Comprehensive Location Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority for Location" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="var" Name="var" Label="var" Version="2.6" Description="varies" /><Datatype ID="-_2-9" Name="-" Label="-" Version="2.9" Description="withdrawn" /><Datatype ID="CWE_OBR" Name="CWE" Label="CWE_OBR" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="ID_2-5" Name="ID" Label="ID" Version="2.5" Description="String Data" /><Datatype ID="CWE_ACK-RCPT" Name="CWE" Label="CWE_ACK-RCPT" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Accusé de réception" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="MOC" Name="MOC" Label="MOC" Version="2.6" Description="Money and Code"><Component Name="Monetary Amount" Usage="O" Datatype="MO" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Charge Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XTN" Name="XTN" Label="XTN" Version="2.6" Description="Extended Telecommunication Number"><Component Name="Telephone Number" Usage="W" Datatype="-" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Telecommunication Use Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Telecommunication Equipment Type" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Communication Address" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Country Code" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Area/City Code" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Local Number" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="9" /><Component Name="Extension" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Any Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Extension Prefix" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Speed Dial Code" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Unformatted Telephone number" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Effective Start Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Protection Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Shared Telecommunication Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Preference Order" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="2" /></Datatype><Datatype ID="CX_FR_2-5" Name="CX" Label="CX_FR" Version="2.5" Description="Extended Composite ID with Check Digit"><Component Name="ID Number" Usage="R" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="15" /><Component Name="Check Digit" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Check Digit Scheme" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Assigning Authority" Usage="R" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="RE" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="C" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Expiration Date" Usage="O" Datatype="DT_2-5" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Assigning Jurisdiction" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="O" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XTN_CISIS" Name="XTN" Label="XTN_CISIS" Version="2.6" Description="Extended Telecommunication Number"><Component Name="Telephone Number" Usage="X" Datatype="-" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Telecommunication Use Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Telecommunication Equipment Type" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="8" /><Component Name="Communication Address" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Country Code" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Area/City Code" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Local Number" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="9" /><Component Name="Extension" Usage="X" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Any Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Extension Prefix" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Speed Dial Code" Usage="X" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Unformatted Telephone number" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Effective Start Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Date" Usage="O" Datatype="DTM" ConfLength="NA" MinLength="1" MaxLength="24" /><Component Name="Expiration Reason" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Protection Code" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Shared Telecommunication Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Preference Order" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="2" /></Datatype><Datatype ID="CWE_2-5" Name="CWE" Label="CWE" Version="2.5" Description="Coded with Exceptions"><Component Name="Identifier" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="CQ" Name="CQ" Label="CQ" Version="2.6" Description="Composite Quantity with Units"><Component Name="Quantity" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="16" /><Component Name="Units" Usage="O" Datatype="CWE" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="HD_2-9" Name="HD" Label="HD" Version="2.9" Description="Hierarchic Designator"><Component Name="Namespace ID" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Universal ID" Usage="C" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Universal ID Type" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="ST" Name="ST" Label="ST" Version="2.6" Description="String Data" /><Datatype ID="PL_FR_2-9" Name="PL" Label="PL_FR" Version="2.9" Description="Person Location"><Component Name="Point of Care" Usage="C" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Room" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Bed" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Status" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Person Location Type" Usage="O" Datatype="IS_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Building" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Floor" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Location Description" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Comprehensive Location Identifier" Usage="O" Datatype="EI_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority for Location" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XON_FR_2-9" Name="XON" Label="XON_FR" Version="2.9" Description="Extended Composite Name and Identification Number for Organizations"><Component Name="Organization Name" Usage="RE" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Name Type Code" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="ID Number" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="RE" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="RE" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="X" Datatype="HD_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Organization Identifier" Usage="RE" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="PT" Name="PT" Label="PT" Version="2.6" Description="Processing Type"><Component Name="Processing ID" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Processing Mode" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /></Datatype><Datatype ID="CWE_MAIL-PS" Name="CWE" Label="CWE_MAIL-PS" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Text" Usage="R" Datatype="ST" ConstantValue="Corps du mail pour un PS" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="XCN_FR_2-5" Name="XCN" Label="XCN_FR" Version="2.5" Description="Extended Composite ID Number and Name for Persons"><Component Name="ID Number" Usage="RE" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Family Name" Usage="RE" Datatype="FN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="RE" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Source Table" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Assigning Authority" Usage="RE" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="C" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Identifier Check Digit" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Identifier Type Code" Usage="C" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Assigning Jurisdiction" Usage="X" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="X" Datatype="CWE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="EIP" Name="EIP" Label="EIP" Version="2.6" Description="Entity Identifier Pair"><Component Name="Placer Assigned Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Filler Assigned Identifier" Usage="O" Datatype="EI" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="ID_2-9" Name="ID" Label="ID" Version="2.9" Description="Coded Value for HL7 Defined Tables" /><Datatype ID="XCN_FR_2-9" Name="XCN" Label="XCN_FR" Version="2.9" Description="Extended Composite ID Number and Name for Persons"><Component Name="Person Identifier" Usage="RE" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Family Name" Usage="RE" Datatype="FN_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="RE" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Source Table" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Authority" Usage="RE" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Type Code" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Check Digit" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Check Digit Scheme" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="C" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Facility" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Context" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="-_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Effective Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="DTM_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Jurisdiction" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Assigning Agency or Department" Usage="X" Datatype="CWE_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check" Usage="O" Datatype="ST_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Security Check Scheme" Usage="O" Datatype="ID_2-9" MinLength="NA" MaxLength="NA" ConfLength="NA" /></Datatype><Datatype ID="XPN_FR2_2-5" Name="XPN" Label="XPN_FR2" Version="2.5" Description="Extended Person Name"><Component Name="Family Name" Usage="C" Datatype="FN_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Given Name" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Second and Further Given Names or Initials Thereof" Usage="C" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Suffix (e.g., JR or III)" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Prefix (e.g., DR)" Usage="O" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Degree (e.g., MD)" Usage="X" Datatype="IS_2-5" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Name Type Code" Usage="R" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Representation Code" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Name Context" Usage="X" Datatype="CE_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Validity Range" Usage="X" Datatype="DR_NIST_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Assembly Order" Usage="X" Datatype="ID_2-5" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Effective Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Expiration Date" Usage="X" Datatype="TS_2-5" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Professional Suffix" Usage="X" Datatype="ST_2-5" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="ED_OBX-CDA" Name="ED" Label="ED_OBX-CDA" Version="2.6" Description="Encapsulated Data"><Component Name="Source Application" Usage="O" Datatype="HD_FR" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Type of Data" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="11" /><Component Name="Data Subtype" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="32" /><Component Name="Encoding" Usage="R" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="6" /><Component Name="Data" Usage="R" Datatype="TX" ConfLength="NA" MinLength="1" MaxLength="*" /></Datatype><Datatype ID="CWE_CDA" Name="CWE" Label="CWE_CDA" Version="2.6" Description="Coded with Exceptions"><Component Name="Identifier" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Text" Usage="R" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="30" /><Component Name="Alternate Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Alternate Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /><Component Name="Name of Alternate Coding System" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="Coding System Version ID" Usage="C" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Alternate Coding System Version ID" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="10" /><Component Name="Original Text" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="199" /></Datatype><Datatype ID="XON" Name="XON" Label="XON" Version="2.6" Description="Extended Composite Name and Identification Number for Organizations"><Component Name="Organization Name" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="50" /><Component Name="Organization Name Type Code" Usage="O" Datatype="IS" ConfLength="NA" MinLength="1" MaxLength="20" /><Component Name="ID Number" Usage="B" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Identifier Check Digit" Usage="O" Datatype="NM" ConfLength="NA" MinLength="1" MaxLength="4" /><Component Name="Check Digit Scheme" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="3" /><Component Name="Assigning Authority" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Identifier Type Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="5" /><Component Name="Assigning Facility" Usage="O" Datatype="HD" MinLength="NA" MaxLength="NA" ConfLength="NA" /><Component Name="Name Representation Code" Usage="O" Datatype="ID" ConfLength="NA" MinLength="1" MaxLength="1" /><Component Name="Organization Identifier" Usage="O" Datatype="ST" ConfLength="NA" MinLength="1" MaxLength="20" /></Datatype></Datatypes></ConformanceProfile>
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Slicings.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Slicings.xml
new file mode 100755
index 0000000000000000000000000000000000000000..33cfdb33815d7e0e70e30c158c199120682a6d25
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/Slicings.xml	
@@ -0,0 +1 @@
+<ProfileSlicing ID="6b2bc869-147d-477a-82c3-6d25425a393c"><SegmentSlicing><Message ID="6616a2f88b87bc0006c99908"><GroupContext ID="6616a2f88b87bc0006c99908-9"><AssertionSlicing Position="2"><Slice Ref="PRT_TCH-MSS_2-9"><Description>If  PRT-4.1 (Identifier)  contains the value 'RCT'. </Description><Assertion><PlainText Path="4[1].1[1]" Text="RCT" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="PRT_TCH-DMP_2-9"><Description>If  PRT-4.1 (Identifier)  contains the value 'SB'. </Description><Assertion><PlainText Path="4[1].1[1]" Text="SB" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="PRT_REP-DEST_2-9"><Description>If  PRT-4.1 (Identifier)  contains the value 'REPLY'. </Description><Assertion><PlainText Path="4[1].1[1]" Text="REPLY" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice></AssertionSlicing><AssertionSlicing Position="1"><Slice Ref="OBX_CDA-T02"><Description>If  OBX-1 (Set ID - OBX)  contains the value '1' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="1" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MASQ-PS"><Description>If  OBX-1 (Set ID - OBX)  contains the value '2' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="2" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_INVI-PAT"><Description>If  OBX-1 (Set ID - OBX)  contains the value '3' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="3" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_INVI-RL"><Description>If  OBX-1 (Set ID - OBX)  contains the value '4' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="4" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_CON-SEC"><Description>If  OBX-1 (Set ID - OBX)  contains the value '5' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="5" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MODIF-CC"><Description>If  OBX-1 (Set ID - OBX)  contains the value '6' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="6" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_DEST-DMP"><Description>If  OBX-1 (Set ID - OBX)  contains the value '7' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="7" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MSS-PS"><Description>If  OBX-1 (Set ID - OBX)  contains the value '8' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="8" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MSS-PAT"><Description>If  OBX-1 (Set ID - OBX)  contains the value '9' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="9" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_ACK-RCPT"><Description>If  OBX-1 (Set ID - OBX)  contains the value '10' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="10" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_ACK-LECT"><Description>If  OBX-1 (Set ID - OBX)  contains the value '11' (Case Sensitive). </Description><Assertion><PlainText Path="1[1]" Text="11" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MAIL-PS"><Description>If  OBX-3.1 (Identifier)  contains the value 'CORPSMAIL_PS' (Case Sensitive). </Description><Assertion><PlainText Path="3[1].1[1]" Text="CORPSMAIL_PS" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice><Slice Ref="OBX_MAIL-PAT"><Description>If  OBX-3.1 (Identifier)  contains the value 'CORPSMAIL_PATIENT' (Case Sensitive). </Description><Assertion><PlainText Path="3[1].1[1]" Text="CORPSMAIL_PATIENT" IgnoreCase="false" NotPresentBehavior="FAIL" /></Assertion></Slice></AssertionSlicing></GroupContext><GroupContext ID="6616a2f88b87bc0006c99908"><AssertionSlicing Position="5"><Slice Ref="PID_PAM-INS_2-5"><Description>If ( At least one occurrence of PID-3.5 (Identifier Type Code)  contains the value 'INS' (Case Sensitive).  AND At least one occurrence of PID-32 (Identity Reliability Code)  contains the value 'VALI' (Case Sensitive).  )</Description><Assertion><AND><PlainText Path="3[*].5[1]" Text="INS" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /><PlainText Path="32[*]" Text="VALI" IgnoreCase="false" AtLeastOnce="true" NotPresentBehavior="FAIL" /></AND></Assertion></Slice></AssertionSlicing></GroupContext></Message></SegmentSlicing></ProfileSlicing>
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSetBindings.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSetBindings.xml
new file mode 100755
index 0000000000000000000000000000000000000000..80e94858788e15c1a9cdbe50a65b17a6c467bdff
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSetBindings.xml	
@@ -0,0 +1 @@
+<ValueSetBindingsContext ID="b1c57248-6651-41fc-a7ac-c64340ef5110"><ValueSetBindings><Datatype><ByID ID="CNE_2-9"><ValueSetBinding BindingStrength="S" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_INVI-PAT"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XAD_2-9"><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="17[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70288_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70617_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70616_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="CNE"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="EI_2-9"><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="OSD"><ValueSetBinding BindingStrength="R" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70524" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding></ByID><ByID ID="EI"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297" /></Bindings></ValueSetBinding></ByID><ByID ID="CX_2-5"><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="HD"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70300" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_INVI-RL"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="TS_2-5"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70529_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="ED"><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70299" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70834" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70291" /></Bindings></ValueSetBinding></ByID><ByID ID="XPN_FR-INS_2-5"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_FR"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297" /></Bindings></ValueSetBinding></ByID><ByID ID="MSG"><ValueSetBinding BindingStrength="R" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70076" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70003" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70354" /></Bindings></ValueSetBinding></ByID><ByID ID="CE_2-5"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="XTN_FR_2-5"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70201_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70202_FR" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_DEST-DMP"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="PLN_2-9"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70338_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XAD_FR_2-5"><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70288_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="XAD_FR-INS_2-5"><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70288_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="HD_FR"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70300" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MASQ-PS"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_FR-MSS_2-9"><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="25[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70904_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="RI"><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70335" /></Bindings></ValueSetBinding></ByID><ByID ID="EI_FR"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_FR" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MSS-PS"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MSS-PAT"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MODIF-CC"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XTN_2-9"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70202_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70868_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70201_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XAD"><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="17[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70288" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70616" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70617" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136" /></Bindings></ValueSetBinding></ByID><ByID ID="CF"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="XON_FR-MSS_2-9"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70204_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="CNN"><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297" /></Bindings></ValueSetBinding></ByID><ByID ID="XTN_FR"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70202_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70868" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70201_FR" /></Bindings></ValueSetBinding></ByID><ByID ID="CX"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding></ByID><ByID ID="CP"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70205" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70298" /></Bindings></ValueSetBinding></ByID><ByID ID="XON_FR-DMP_2-9"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70204_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_CI-SIS"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_ACK-LECT"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XON_FR"><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70204" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding></ByID><ByID ID="DLD_2-5"><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70113_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_2-9"><ValueSetBinding BindingStrength="S" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="TS_FR_2-5"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70529_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="RP"><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70834" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70291" /></Bindings></ValueSetBinding></ByID><ByID ID="FC_2-5"><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70064_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_2-5"><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="PPN"><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="19[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="17[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200" /></Bindings></ValueSetBinding></ByID><ByID ID="TQ"><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70472" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="AD"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190" /></Bindings></ValueSetBinding></ByID><ByID ID="PL_2-9"><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70302_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70308_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70307_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70305_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70303_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70306_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70304_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_FR-PRT_2-9"><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="25[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70904_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XAD_FR"><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="17[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70288" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70616" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70617" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70190_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136" /></Bindings></ValueSetBinding></ByID><ByID ID="VID_TCH-26"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70399" /></Bindings></ValueSetBinding></ByID><ByID ID="EI_FR-MSH2"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_FR" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MAIL-PAT"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="PL_FR-PV1_2-5"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70303_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70304_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70305_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70116_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70302_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70307_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70308_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="HD_2-5"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70300_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_CON-SEC"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="DLN_2-5"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70333_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="NDL"><ValueSetBinding BindingStrength="S" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70308" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70307" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70302" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70305" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70304" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70306" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70303" /></Bindings></ValueSetBinding></ByID><ByID ID="XPN"><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444" /></Bindings></ValueSetBinding></ByID><ByID ID="SPS"><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70495" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70371" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70369" /></Bindings></ValueSetBinding></ByID><ByID ID="RPT"><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70528" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70527" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70335" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136" /></Bindings></ValueSetBinding></ByID><ByID ID="PL_FR_2-5"><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70303_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70304_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70305_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70306_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70302_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70307_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70308_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_OBR"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_ACK-RCPT"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XTN"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70202" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70868" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70201" /></Bindings></ValueSetBinding></ByID><ByID ID="CX_FR_2-5"><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="XTN_CISIS"><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70868" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70618" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70201_FR" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_2-5"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding></ByID><ByID ID="HD_2-9"><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70301_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70300_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="PL_FR_2-9"><ValueSetBinding BindingStrength="S" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70302_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70308_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70307_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70305_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70303_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70306_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70304_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XON_FR_2-9"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70204_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="PT"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70207" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70103" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_MAIL-PS"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_FR_2-5"><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="XCN_FR_2-9"><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70297_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="25[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70904_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="XPN_FR2_2-5"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70200_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70444_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70448_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70360_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="CWE_CDA"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70396_CI-SIS_2-x" /></Bindings></ValueSetBinding></ByID><ByID ID="XON"><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70363" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70061" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70203" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70204" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="9[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70465" /></Bindings></ValueSetBinding></ByID></Datatype><Segment><ByID ID="OBX_MAIL-PAT"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding></ByID><ByID ID="MSH_TCH-T02"><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70211" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70362" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70361" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70155" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70356" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="3[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70361" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="1[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70362" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70155" /></Bindings></ValueSetBinding></ByID><ByID ID="PV1_PAM-TCH_2-5"><ValueSetBinding BindingStrength="S" Target="16[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70099_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="34[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70111_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="40[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70116_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="36[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70112_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="13[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70092_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="23[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70046_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="29[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70110_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="31[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70021_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="24[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70044_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70045_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="41[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70117_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70018_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="39[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70115_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="38[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70114_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70069_FR" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="21[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70032_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70004_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70009_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70087_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70007_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="14[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70023_FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="28[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70073_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="51[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70326_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="TXA_TCH"><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="JDV_J07-XdsTypeCode-CISIS" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="18[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70272" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="19[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70273" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70275" /></Bindings></ValueSetBinding></ByID><ByID ID="ORC_CISIS-02"><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70121" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="29[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70482" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70038" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70339" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="26[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70552" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="30[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70483" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="28[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70177" /></Bindings></ValueSetBinding></ByID><ByID ID="EVN_FR"><ValueSetBinding BindingStrength="R" Target="1[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70003" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70062" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_CON-SEC"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_INVI-RL"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="PID_PAM-FR_2-5"><ValueSetBinding BindingStrength="S" Target="35[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70446_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="38[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70429_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70005_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="17[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70006_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70002_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="27[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70172_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="32[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70445_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="39[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70171_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="30[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="28[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70212_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70189_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="31[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70001_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70296_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="24[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="26[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70171_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="36[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70447_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_MASQ-PS"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="PID_PAM-INS_2-5"><ValueSetBinding BindingStrength="S" Target="35[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70446_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70289_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="38[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70429_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="10[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70005_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="17[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70006_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="16[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70002_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="27[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70172_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="32[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70445_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="39[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70171_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="30[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="28[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70212_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70189_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="31[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70001_PAM-FR_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="15[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70296_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="24[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70136_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="26[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70171_2-5" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="36[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70447_2-5" /></Bindings></ValueSetBinding></ByID><ByID ID="NTE_FR"><ValueSetBinding BindingStrength="S" Target="4[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70364" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70105" /></Bindings></ValueSetBinding></ByID><ByID ID="TQ2_FR"><ValueSetBinding BindingStrength="R" Target="7[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70505" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="6[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70504" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70506" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70503" /></Bindings></ValueSetBinding></ByID><ByID ID="PRT_REP-DEST_2-9"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70406_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70961_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="23[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70185_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="PRT_TCH-MSS_2-9"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70406_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70961_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="23[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70185_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_ACK-RCPT"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70085" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_INVI-PAT"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="PRT_TCH_2-9"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70406_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70961_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="23[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70185_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="participation_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_CDA-T02"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="3[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="JDV_J07-XdsTypeCode-CISIS" /></Bindings></ValueSetBinding></ByID><ByID ID="OBR_FR_TCH"><ValueSetBinding BindingStrength="R" Target="41[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70224" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="24[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70074" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="25[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70123" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="11[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70065" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="46[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70411" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="47[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70411" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="45[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70340" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="30[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70124" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="49[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70507" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="42[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70225" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="44[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70088" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="48[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70476" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="4[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="JDV_J07-XdsTypeCode-CISIS" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_MSS-PAT"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_ACK-LECT"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="PRT_TCH-DMP_2-9"><ValueSetBinding BindingStrength="S" Target="7[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70406_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70961_2-9" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="23[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70185_2-9" /></Bindings></ValueSetBinding></ByID><ByID ID="TQ1"><ValueSetBinding BindingStrength="R" Target="12[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70472" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="9[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70485" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_MODIF-CC"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_MAIL-PS"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_MSS-PS"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID><ByID ID="UAC"><ValueSetBinding BindingStrength="R" Target="1[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70615" /></Bindings></ValueSetBinding></ByID><ByID ID="OBX_DEST-DMP"><ValueSetBinding BindingStrength="R" Target="10[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70080" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="2[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70125" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="20[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70163" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="S" Target="8[*]"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations><Bindings><Binding BindingIdentifier="HL70078" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="22[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="HL70725" /></Bindings></ValueSetBinding><ValueSetBinding BindingStrength="R" Target="5[*]"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations><Bindings><Binding BindingIdentifier="expandedYes-NoIndicator" /></Bindings></ValueSetBinding></ByID></Segment></ValueSetBindings><SingleCodeBindings><Datatype><ByID ID="VID_TCH-26"><SingleCodeBinding Target="1[*]" Code="2.6" CodeSystem="HL70104"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="XTN_CISIS"><SingleCodeBinding Target="3[*]" Code="X.400" CodeSystem="HL70202"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="ED_OBX-CDA"><SingleCodeBinding Target="4[*]" Code="Base64" CodeSystem="HL70299"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="2[*]" Code="text" CodeSystem="HL70834"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="XML" CodeSystem="HL70291"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID></Datatype><Segment><ByID ID="OBX_MAIL-PAT"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="CORPSMAIL_PATIENT" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="MSH_TCH-T02"><SingleCodeBinding Target="17[*]" Code="FRA" CodeSystem="HL70399"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="9[*].3[*]" Code="MDM_T02" CodeSystem="HL70354"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="9[*].1[*]" Code="MDM" CodeSystem="HL70076"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="9[*].2[*]" Code="T02" CodeSystem="HL70003"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="TXA_TCH"><SingleCodeBinding Target="3[*]" Code="TEXT" CodeSystem="HL70191"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="17[*]" Code="AU" CodeSystem="HL70271"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="ORC_CISIS-02"><SingleCodeBinding Target="1[*]" Code="NW" CodeSystem="HL70119"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_CON-SEC"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="CONNEXION_SECRETE" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_INVI-RL"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="INVISIBLE_REP_LEGAUX" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_MASQ-PS"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="MASQUE_PS" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="PRT_REP-DEST_2-9"><SingleCodeBinding Target="4[*]" Code="REPLY" CodeSystem="participation"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="PRT_TCH-MSS_2-9"><SingleCodeBinding Target="4[*]" Code="RCT" CodeSystem="participation"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_ACK-RCPT"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="ACK_RECEPTION" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_INVI-PAT"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="INVISIBLE_PATIENT" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_CDA-T02"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_MSS-PAT"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="DESTMSSANTEPAT" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_ACK-LECT"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="ACK_LECTURE_MSS" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="PRT_TCH-DMP_2-9"><SingleCodeBinding Target="4[*]" Code="SB" CodeSystem="participation"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_MODIF-CC"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="MODIF_CONF_CODE" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_MAIL-PS"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="CORPSMAIL_PS" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_MSS-PS"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="DESTMSSANTEPS" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID><ByID ID="OBX_DEST-DMP"><SingleCodeBinding Target="11[*]" Code="F" CodeSystem="HL70085"><BindingLocations><SimpleBindingLocation CodeLocation="." /></BindingLocations></SingleCodeBinding><SingleCodeBinding Target="3[*]" Code="DESTDMP" CodeSystem="MetaDMPMSS"><BindingLocations><ComplexBindingLocation CodeLocation="1[1]" CodeSystemLocation="3[1]" /></BindingLocations></SingleCodeBinding></ByID></Segment></SingleCodeBindings></ValueSetBindingsContext>
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSets.xml b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSets.xml
new file mode 100755
index 0000000000000000000000000000000000000000..dc332955c806b6074bac2430faf3ce9d2ca917aa
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messageprofiles/ MDM^T02^MDM_T02/ValueSets.xml	
@@ -0,0 +1 @@
+<ValueSetLibrary xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://raw.githubusercontent.com/Jungyubw/NIST_healthcare_hl7_v2_profile_schema/master/Schema/NIST%20Validation%20Schema/ValueSets.xsd" ValueSetLibraryIdentifier="59d6c46f-a77b-477d-85c2-ffa6963a28ae"><MetaData Name="Transmission de documents CDA en HL7v2 / Transmission au LPS d'un document provenant d'un courriel MSSanté (v3.1)" OrgName="No Org Info" Version="2.6" Date="No Date Info" /><NoValidation><BindingIdentifier>HL70399</BindingIdentifier><BindingIdentifier>HL70448_2-9</BindingIdentifier><BindingIdentifier>HL70113_2-5</BindingIdentifier><BindingIdentifier>HL70018_2-5</BindingIdentifier><BindingIdentifier>HL70302_2-5</BindingIdentifier><BindingIdentifier>HL70111_2-5</BindingIdentifier><BindingIdentifier>HL70302_2-9</BindingIdentifier><BindingIdentifier>HL70046_2-5</BindingIdentifier><BindingIdentifier>HL70114_2-5</BindingIdentifier><BindingIdentifier>HL70362</BindingIdentifier><BindingIdentifier>HL70297_2-9</BindingIdentifier><BindingIdentifier>HL70021_2-5</BindingIdentifier><BindingIdentifier>HL70212_2-5</BindingIdentifier><BindingIdentifier>HL70399_2-9</BindingIdentifier><BindingIdentifier>HL70303_2-9</BindingIdentifier><BindingIdentifier>HL70296_2-5</BindingIdentifier><BindingIdentifier>HL70087_2-5</BindingIdentifier><BindingIdentifier>HL70361</BindingIdentifier><BindingIdentifier>HL70308_2-9</BindingIdentifier><BindingIdentifier>HL70448</BindingIdentifier><BindingIdentifier>HL70448_2-5</BindingIdentifier><BindingIdentifier>HL70300_2-9</BindingIdentifier><BindingIdentifier>HL70288</BindingIdentifier><BindingIdentifier>HL70088</BindingIdentifier><BindingIdentifier>HL70306_2-5</BindingIdentifier><BindingIdentifier>HL70552</BindingIdentifier><BindingIdentifier>HL70064_2-5</BindingIdentifier><BindingIdentifier>HL70363</BindingIdentifier><BindingIdentifier>HL70308_2-5</BindingIdentifier><BindingIdentifier>HL70363_2-9</BindingIdentifier><BindingIdentifier>HL70297</BindingIdentifier><BindingIdentifier>HL70297_2-5</BindingIdentifier><BindingIdentifier>HL70303_2-5</BindingIdentifier><BindingIdentifier>HL70307_2-5</BindingIdentifier><BindingIdentifier>HL70289_2-5</BindingIdentifier><BindingIdentifier>HL70340</BindingIdentifier><BindingIdentifier>HL70363_2-5</BindingIdentifier><BindingIdentifier>HL70476</BindingIdentifier><BindingIdentifier>HL70304</BindingIdentifier><BindingIdentifier>HL70306_2-9</BindingIdentifier><BindingIdentifier>HL70333_2-5</BindingIdentifier><BindingIdentifier>HL70399_2-5</BindingIdentifier><BindingIdentifier>HL70447_2-5</BindingIdentifier><BindingIdentifier>HL70308</BindingIdentifier><BindingIdentifier>HL70115_2-5</BindingIdentifier><BindingIdentifier>HL70304_2-5</BindingIdentifier><BindingIdentifier>HL70073_2-5</BindingIdentifier><BindingIdentifier>HL70289_2-9</BindingIdentifier><BindingIdentifier>HL70307_2-9</BindingIdentifier><BindingIdentifier>HL70171_2-5</BindingIdentifier><BindingIdentifier>HL70446_2-5</BindingIdentifier><BindingIdentifier>HL70288_2-9</BindingIdentifier><BindingIdentifier>HL70302</BindingIdentifier><BindingIdentifier>HL70288_2-5</BindingIdentifier><BindingIdentifier>HL70304_2-9</BindingIdentifier><BindingIdentifier>HL70306</BindingIdentifier><BindingIdentifier>HL70411</BindingIdentifier><BindingIdentifier>HL70110_2-5</BindingIdentifier><BindingIdentifier>HL70303</BindingIdentifier><BindingIdentifier>HL70289</BindingIdentifier><BindingIdentifier>HL70961_2-9</BindingIdentifier><BindingIdentifier>HL70300</BindingIdentifier><BindingIdentifier>HL70172_2-5</BindingIdentifier><BindingIdentifier>HL70307</BindingIdentifier><BindingIdentifier>HL70044_2-5</BindingIdentifier></NoValidation><ValueSetDefinitions Group="HL7_base" Order="1"><ValueSetDefinition BindingIdentifier="HL70444" Name="Name assembly order" Description="Name assembly order" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="G" DisplayName="Prefix Given Middle Family Suffix" CodeSystem="HL70444" Usage="P" /><ValueElement Value="F" DisplayName="Prefix Family Middle Given Suffix" CodeSystem="HL70444" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70399" Name="Country code" Description="Country code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70448_2-9" Name="Name Context" Description="Name Context" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70448" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70113_2-5" Name="Discharged to location" Description="Discharged to location" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70078" Name="Abnormal flags" Description="Abnormal flags" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="LL" DisplayName="Below lower panic limits" CodeSystem="HL70078" Usage="P" /><ValueElement Value="null" DisplayName="No range defined, or normal ranges don't apply" CodeSystem="HL70078" Usage="P" /><ValueElement Value="I" DisplayName="Intermediate. Indicates for microbiology susceptibilities only." CodeSystem="HL70078" Usage="P" /><ValueElement Value="U" DisplayName="Significant change up" CodeSystem="HL70078" Usage="P" /><ValueElement Value="R" DisplayName="Resistant. Indicates for microbiology susceptibilities only." CodeSystem="HL70078" Usage="P" /><ValueElement Value="S" DisplayName="Susceptible. Indicates for microbiology susceptibilities only." CodeSystem="HL70078" Usage="P" /><ValueElement Value="VS" DisplayName="Very susceptible. Indicates for microbiology susceptibilities only." CodeSystem="HL70078" Usage="P" /><ValueElement Value="AA" DisplayName="Very abnormal (applies to non-numeric units, analogous to panic limits for numeric units)" CodeSystem="HL70078" Usage="P" /><ValueElement Value="&lt;" DisplayName="Below absolute low-off instrument scale" CodeSystem="HL70078" Usage="P" /><ValueElement Value="HH" DisplayName="Above upper panic limits" CodeSystem="HL70078" Usage="P" /><ValueElement Value="&gt;" DisplayName="Above absolute high-off instrument scale" CodeSystem="HL70078" Usage="P" /><ValueElement Value="N" DisplayName="Normal (applies to non-numeric results)" CodeSystem="HL70078" Usage="P" /><ValueElement Value="L" DisplayName="Below low normal" CodeSystem="HL70078" Usage="P" /><ValueElement Value="D" DisplayName="Significant change down" CodeSystem="HL70078" Usage="P" /><ValueElement Value="A" DisplayName="Abnormal (applies to non-numeric results)" CodeSystem="HL70078" Usage="P" /><ValueElement Value="H" DisplayName="Above high normal" CodeSystem="HL70078" Usage="P" /><ValueElement Value="B" DisplayName="Better--use when direction not relevant" CodeSystem="HL70078" Usage="P" /><ValueElement Value="MS" DisplayName="Moderately susceptible. Indicates for microbiology susceptibilities only." CodeSystem="HL70078" Usage="P" /><ValueElement Value="W" DisplayName="Worse--use when direction not relevant" CodeSystem="HL70078" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70465_2-5" Name="Name/address representation" Description="Name/address representation" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="I" DisplayName="Ideographic (i.e., Kanji)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="A" DisplayName="Alphabetic (i.e., Default or some single-byte)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="P" DisplayName="Phonetic (i.e., ASCII, Katakana, Hiragana, etc.)" CodeSystem="HL70465" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70018_2-5" Name="Patient Type" Description="Patient Type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70009_2-5" Name="Ambulatory Status" Description="Ambulatory Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="B1" DisplayName="Oxygen therapy" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A2" DisplayName="Wheelchair/stretcher bound" CodeSystem="HL70009" Usage="P" /><ValueElement Value="B5" DisplayName="Paraplegic" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A4" DisplayName="Disoriented" CodeSystem="HL70009" Usage="P" /><ValueElement Value="B3" DisplayName="Amputee" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A0" DisplayName="No functional limitations" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A5" DisplayName="Vision impaired" CodeSystem="HL70009" Usage="P" /><ValueElement Value="B2" DisplayName="Special equipment (tubes, IVs, catheters)" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A1" DisplayName="Ambulates with assistive device" CodeSystem="HL70009" Usage="P" /><ValueElement Value="B6" DisplayName="Pregnant" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A7" DisplayName="Speech impaired" CodeSystem="HL70009" Usage="P" /><ValueElement Value="B4" DisplayName="Mastectomy" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A6" DisplayName="Hearing impaired" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A3" DisplayName="Comatose; non-responsive" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A9" DisplayName="Functional level unknown" CodeSystem="HL70009" Usage="P" /><ValueElement Value="A8" DisplayName="Non-English speaking" CodeSystem="HL70009" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70302_2-5" Name="Point of care" Description="Point of care" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70092_2-5" Name="Re-Admission Indicator" Description="Re-Admission Indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="R" DisplayName="Re-admission" CodeSystem="HL70092" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70190" Name="Address type" Description="Address type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SH" DisplayName="Shipping Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="RH" DisplayName="Registry home. Refers to the information system, typically managed by a public health agency, that stores patient information such as immunization histories or cancer data, regardless of where the patient obtains services." CodeSystem="HL70190" Usage="P" /><ValueElement Value="BI" DisplayName="Billing Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="L" DisplayName="Legal Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="O" DisplayName="Office/Business" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BA" DisplayName="Bad address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="N" DisplayName="Birth (nee)  (birth address, not otherwise specified)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="S" DisplayName="Service Location" CodeSystem="HL70190" Usage="P" /><ValueElement Value="B" DisplayName="Firm/Business" CodeSystem="HL70190" Usage="P" /><ValueElement Value="M" DisplayName="Mailing" CodeSystem="HL70190" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70190" Usage="P" /><ValueElement Value="P" DisplayName="Permanent" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BR" DisplayName="Residence at birth (home address at time of birth)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BDL" DisplayName="Birth delivery location  (address where birth occurred)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="F" DisplayName="Country Of Origin" CodeSystem="HL70190" Usage="P" /><ValueElement Value="C" DisplayName="Current Or Temporary" CodeSystem="HL70190" Usage="P" /><ValueElement Value="V" DisplayName="Vacation" CodeSystem="HL70190" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70504" Name="Sequence Condition Code" Description="Sequence Condition Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SS" DisplayName="Start related service request(s), start current service request." CodeSystem="HL70504" Usage="P" /><ValueElement Value="SE" DisplayName="Start related service request(s), end current service request." CodeSystem="HL70504" Usage="P" /><ValueElement Value="EE" DisplayName="End related service request(s), end current service request." CodeSystem="HL70504" Usage="P" /><ValueElement Value="ES" DisplayName="End related service request(s), start current service request." CodeSystem="HL70504" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70200_2-5" Name="Name type" Description="Name type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A" DisplayName="Alias Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="D" DisplayName="Display Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="C" DisplayName="Adopted Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="T" DisplayName="Indigenous/Tribal/Community Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="B" DisplayName="Name at Birth" CodeSystem="HL70200" Usage="P" /><ValueElement Value="U" DisplayName="Unspecified" CodeSystem="HL70200" Usage="P" /><ValueElement Value="S" DisplayName="Coded Pseudo-Name to ensure anonymity" CodeSystem="HL70200" Usage="P" /><ValueElement Value="R" DisplayName="Registered Name (animals only)" CodeSystem="HL70200" Usage="P" /><ValueElement Value="P" DisplayName="Name of Partner/Spouse (retained for backward compatibility only)" CodeSystem="HL70200" Usage="P" /><ValueElement Value="I" DisplayName="Licensing Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="N" DisplayName="Nickname /&quot;Call me&quot; Name/Street Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="L" DisplayName="Legal Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="M" DisplayName="Maiden Name" CodeSystem="HL70200" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70111_2-5" Name="Delete Account Code" Description="Delete Account Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70302_2-9" Name="Point of Care" Description="Point of Care" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70302" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70005_2-5" Name="Race" Description="Race" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="2076-8" DisplayName="Native Hawaiian or Other Pacific Islander" CodeSystem="HL70005" Usage="P" /><ValueElement Value="2028-9" DisplayName="Asian" CodeSystem="HL70005" Usage="P" /><ValueElement Value="2131-1" DisplayName="Other Race" CodeSystem="HL70005" Usage="P" /><ValueElement Value="2106-3" DisplayName="White" CodeSystem="HL70005" Usage="P" /><ValueElement Value="1002-5" DisplayName="American Indian or Alaska Native" CodeSystem="HL70005" Usage="P" /><ValueElement Value="2054-5" DisplayName="Black or African American" CodeSystem="HL70005" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70046_2-5" Name="Credit Rating" Description="Credit Rating" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70114_2-5" Name="Diet Type" Description="Diet Type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70085" Name="Observation result status codes interpretation" Description="Observation result status codes interpretation" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="W" DisplayName="Post original as wrong, e.g., transmitted for wrong patient" CodeSystem="HL70085" Usage="P" /><ValueElement Value="I" DisplayName="Specimen in lab; results pending" CodeSystem="HL70085" Usage="P" /><ValueElement Value="X" DisplayName="Results cannot be obtained for this observation" CodeSystem="HL70085" Usage="P" /><ValueElement Value="F" DisplayName="Final results; Can only be changed with a corrected result." CodeSystem="HL70085" Usage="P" /><ValueElement Value="S" DisplayName="Partial results.   Deprecated. Retained only for backward compatibility as of V2.6." CodeSystem="HL70085" Usage="P" /><ValueElement Value="N" DisplayName="Not asked; used to affirmatively document that the observation identified in the OBX was not sought when the universal service ID in OBR-4 implies that it would be sought." CodeSystem="HL70085" Usage="P" /><ValueElement Value="R" DisplayName="Results entered -- not verified" CodeSystem="HL70085" Usage="P" /><ValueElement Value="D" DisplayName="Deletes the OBX record" CodeSystem="HL70085" Usage="P" /><ValueElement Value="C" DisplayName="Record coming over is a correction and thus replaces a final result" CodeSystem="HL70085" Usage="P" /><ValueElement Value="O" DisplayName="Order detail description only (no result)" CodeSystem="HL70085" Usage="P" /><ValueElement Value="U" DisplayName="Results status change to final without retransmitting results already sent as 'preliminary.'  E.g., radiology changes status from preliminary to final" CodeSystem="HL70085" Usage="P" /><ValueElement Value="P" DisplayName="Preliminary results" CodeSystem="HL70085" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70362" Name="Facility" Description="Facility" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70297_2-9" Name="CN ID Source" Description="CN ID Source" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70297" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70021_2-5" Name="Bad Debt Agency Code" Description="Bad Debt Agency Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70201_2-9" Name="Telecommunication Use Code" Description="Telecommunication Use Code" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="NET" DisplayName="Network (email) Address" CodeSystem="HL70201" Usage="P" /><ValueElement Value="WPN" DisplayName="Work Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="EMR" DisplayName="Emergency Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="ASN" DisplayName="Answering Service Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="ORN" DisplayName="Other Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="VHN" DisplayName="Vacation Home Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="BPN" DisplayName="Beeper Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="PRN" DisplayName="Primary Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="PRS" DisplayName="Personal" CodeSystem="HL70201" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70061" Name="Check digit scheme" Description="Check digit scheme" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ISO" DisplayName="ISO 7064: 1983" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M11" DisplayName="Mod 11 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M10" DisplayName="Mod 10 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="NPI" DisplayName="Check digit algorithm in the US National Provider Identifier" CodeSystem="HL70061" Usage="P" /><ValueElement Value="BCV" DisplayName="Bank Card Validation Number" CodeSystem="HL70061" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70212_2-5" Name="Nationality" Description="Nationality" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70305" Name="Person location type" Description="Person location type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Nursing Unit" CodeSystem="HL70305" Usage="P" /><ValueElement Value="D" DisplayName="Department" CodeSystem="HL70305" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70305" Usage="P" /><ValueElement Value="O" DisplayName="Provider's Office" CodeSystem="HL70305" Usage="P" /><ValueElement Value="S" DisplayName="SNF" CodeSystem="HL70305" Usage="P" /><ValueElement Value="C" DisplayName="Clinic" CodeSystem="HL70305" Usage="P" /><ValueElement Value="P" DisplayName="Phone" CodeSystem="HL70305" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70399_2-9" Name="Country Code" Description="Country Code" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="use 3-character (alphabetic) form of ISO 3166-1" CodeSystem="HL70399" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70529_2-5" Name="Precision" Description="Precision" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="L" DisplayName="month" CodeSystem="HL70529" Usage="P" /><ValueElement Value="M" DisplayName="minute" CodeSystem="HL70529" Usage="P" /><ValueElement Value="Y" DisplayName="year" CodeSystem="HL70529" Usage="P" /><ValueElement Value="D" DisplayName="day" CodeSystem="HL70529" Usage="P" /><ValueElement Value="S" DisplayName="second" CodeSystem="HL70529" Usage="P" /><ValueElement Value="H" DisplayName="hour" CodeSystem="HL70529" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70303_2-9" Name="Room" Description="Room" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70303" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70296_2-5" Name="Primary Language" Description="Primary Language" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70038" Name="Order status" Description="Order status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="HD" DisplayName="Order is on hold" CodeSystem="HL70038" Usage="P" /><ValueElement Value="DC" DisplayName="Order was discontinued" CodeSystem="HL70038" Usage="P" /><ValueElement Value="ER" DisplayName="Error, order not found" CodeSystem="HL70038" Usage="P" /><ValueElement Value="RP" DisplayName="Order has been replaced" CodeSystem="HL70038" Usage="P" /><ValueElement Value="CM" DisplayName="Order is completed" CodeSystem="HL70038" Usage="P" /><ValueElement Value="A" DisplayName="Some, but not all, results available" CodeSystem="HL70038" Usage="P" /><ValueElement Value="SC" DisplayName="In process, scheduled" CodeSystem="HL70038" Usage="P" /><ValueElement Value="IP" DisplayName="In process, unspecified" CodeSystem="HL70038" Usage="P" /><ValueElement Value="CA" DisplayName="Order was canceled" CodeSystem="HL70038" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70087_2-5" Name="Pre-Admit Test Indicator" Description="Pre-Admit Test Indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70618_2-9" Name="Protection Code" Description="Protection Code" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="UL" DisplayName="Unlisted (Should not appear in directories)" CodeSystem="HL70618" Usage="P" /><ValueElement Value="LI" DisplayName="Listed" CodeSystem="HL70618" Usage="P" /><ValueElement Value="UP" DisplayName="Unpublished" CodeSystem="HL70618" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70300_2-5" Name="Namespace ID" Description="Namespace ID" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="…" DisplayName="No suggested values defined" CodeSystem="HL70300" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70124" Name="Transportation Mode" Description="Transportation Mode" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="WALK" DisplayName="Patient walks to diagnostic service" CodeSystem="HL70124" Usage="P" /><ValueElement Value="CART" DisplayName="Cart - patient travels on cart or gurney" CodeSystem="HL70124" Usage="P" /><ValueElement Value="PORT" DisplayName="The examining device goes to patient's location" CodeSystem="HL70124" Usage="P" /><ValueElement Value="WHLC" DisplayName="Wheelchair" CodeSystem="HL70124" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70361" Name="Application" Description="Application" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70308_2-9" Name="Floor" Description="Floor" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined." CodeSystem="HL70308" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70123" Name="Result Status" Description="Result Status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="P" DisplayName="Preliminary: A verified early result is available, final results not yet obtained" CodeSystem="HL70123" Usage="P" /><ValueElement Value="Z" DisplayName="No record of this patient. (Used only on queries)" CodeSystem="HL70123" Usage="P" /><ValueElement Value="I" DisplayName="No results available; specimen received, procedure incomplete" CodeSystem="HL70123" Usage="P" /><ValueElement Value="R" DisplayName="Results stored; not yet verified" CodeSystem="HL70123" Usage="P" /><ValueElement Value="X" DisplayName="No results available; Order canceled." CodeSystem="HL70123" Usage="P" /><ValueElement Value="S" DisplayName="No results available; procedure scheduled, but not done" CodeSystem="HL70123" Usage="P" /><ValueElement Value="A" DisplayName="Some, but not all, results available" CodeSystem="HL70123" Usage="P" /><ValueElement Value="C" DisplayName="Correction to results" CodeSystem="HL70123" Usage="P" /><ValueElement Value="F" DisplayName="Final results; results stored and verified.  Can only be changed with a corrected result." CodeSystem="HL70123" Usage="P" /><ValueElement Value="O" DisplayName="Order received; specimen not yet received" CodeSystem="HL70123" Usage="P" /><ValueElement Value="Y" DisplayName="No order on record for this test.  (Used only on queries)" CodeSystem="HL70123" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70211" Name="Alternate character sets" Description="Alternate character sets" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="BIG-5" DisplayName="Code for Taiwanese Character Set (BIG-5)" CodeSystem="HL70211" Usage="P" /><ValueElement Value="KS X 1001" DisplayName="Code for Korean Character Set (KS X 1001)" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/4" DisplayName="The printable characters from the ISO 8859/4 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="ISO IR159" DisplayName="Code of the supplementary Japanese Graphic Character set for information interchange (JIS X 0212-1990)." CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/6" DisplayName="The printable characters from the ISO 8859/6 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="ASCII" DisplayName="The printable 7-bit ASCII character set." CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/15" DisplayName="The printable characters from the ISO 8859/15 (Latin-15)" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/5" DisplayName="The printable characters from the ISO 8859/5 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="ISO IR14" DisplayName="Code for Information Exchange (one byte)(JIS X 0201-1976)." CodeSystem="HL70211" Usage="P" /><ValueElement Value="ISO IR87" DisplayName="Code for the Japanese Graphic Character set for information interchange (JIS X 0208-1990)," CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/1" DisplayName="The printable characters from the ISO 8859/1 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/8" DisplayName="The printable characters from the ISO 8859/8 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="UNICODE UTF-32" DisplayName="UCS Transformation Format, 32-bit form" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/2" DisplayName="The printable characters from the ISO 8859/2 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/3" DisplayName="The printable characters from the ISO 8859/3 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="CNS 11643-1992" DisplayName="Code for Taiwanese Character Set (CNS 11643-1992)" CodeSystem="HL70211" Usage="P" /><ValueElement Value="UNICODE" DisplayName="The world wide character standard from ISO/IEC 10646-1-1993" CodeSystem="HL70211" Usage="P" /><ValueElement Value="UNICODE UTF-16" DisplayName="UCS Transformation Format, 16-bit form" CodeSystem="HL70211" Usage="P" /><ValueElement Value="UNICODE UTF-8" DisplayName="UCS Transformation Format, 8-bit form" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/7" DisplayName="The printable characters from the ISO 8859/7 Character set" CodeSystem="HL70211" Usage="P" /><ValueElement Value="GB 18030-2000" DisplayName="Code for Chinese Character Set (GB 18030-2000)" CodeSystem="HL70211" Usage="P" /><ValueElement Value="8859/9" DisplayName="The printable characters from the ISO 8859/9 Character set" CodeSystem="HL70211" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70225" Name="Escort Required" Description="Escort Required" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="R" DisplayName="Required" CodeSystem="HL70225" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70225" Usage="P" /><ValueElement Value="N" DisplayName="Not Required" CodeSystem="HL70225" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70448" Name="Name context" Description="Name context" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70448_2-5" Name="Name context" Description="Name context" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70205" Name="Price type" Description="Price type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="TF" DisplayName="technology fee for use of equipment" CodeSystem="HL70205" Usage="P" /><ValueElement Value="UP" DisplayName="unit price, may be based on length of procedure or service" CodeSystem="HL70205" Usage="P" /><ValueElement Value="PF" DisplayName="professional fee for performing provider" CodeSystem="HL70205" Usage="P" /><ValueElement Value="TP" DisplayName="total price" CodeSystem="HL70205" Usage="P" /><ValueElement Value="DC" DisplayName="direct unit cost" CodeSystem="HL70205" Usage="P" /><ValueElement Value="AP" DisplayName="administrative price or handling fee" CodeSystem="HL70205" Usage="P" /><ValueElement Value="IC" DisplayName="indirect unit cost" CodeSystem="HL70205" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70300_2-9" Name="Namespace ID" Description="Namespace ID" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70300" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70507" Name="Observation Result Handling" Description="Observation Result Handling" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Notify provider when ready" CodeSystem="HL70507" Usage="P" /><ValueElement Value="F" DisplayName="Film-with-patient" CodeSystem="HL70507" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70288" Name="Census tract" Description="Census tract" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70088" Name="Procedure Code" Description="Procedure Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70444_2-9" Name="Name Assembly Order" Description="Name Assembly Order" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="F" DisplayName="Prefix Family Middle Given Suffix" CodeSystem="HL70444" Usage="P" /><ValueElement Value="G" DisplayName="Prefix Given Middle Family Suffix" CodeSystem="HL70444" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70371" Name="Additive/Preservative" Description="Additive/Preservative" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SPS" DisplayName="SPS(this should be spelled out if not universally understood)" CodeSystem="HL70371" Usage="P" /><ValueElement Value="ACDB" DisplayName="ACD Solution B" CodeSystem="HL70371" Usage="P" /><ValueElement Value="EDTN" DisplayName="Sodium/Na EDTA" CodeSystem="HL70371" Usage="P" /><ValueElement Value="MICHTM" DisplayName="Michel's transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="F10" DisplayName="10% Formalin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="CARS" DisplayName="Carson's Modified 10% formalin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="BACTM" DisplayName="Bacterial Transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="ENT+" DisplayName="Enteric plus" CodeSystem="HL70371" Usage="P" /><ValueElement Value="BOUIN" DisplayName="Bouin's solution" CodeSystem="HL70371" Usage="P" /><ValueElement Value="THROM" DisplayName="Thrombin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="KOX" DisplayName="Potassium Oxalate" CodeSystem="HL70371" Usage="P" /><ValueElement Value="ACDA" DisplayName="ACD Solution A" CodeSystem="HL70371" Usage="P" /><ValueElement Value="C38" DisplayName="3.8% Citrate" CodeSystem="HL70371" Usage="P" /><ValueElement Value="EDTK15" DisplayName="Potassium/K EDTA 15%" CodeSystem="HL70371" Usage="P" /><ValueElement Value="ENT" DisplayName="Enteric bacteria transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="NONE" DisplayName="None" CodeSystem="HL70371" Usage="P" /><ValueElement Value="EDTK75" DisplayName="Potassium/K EDTA 7.5%" CodeSystem="HL70371" Usage="P" /><ValueElement Value="NAF" DisplayName="Sodium Fluoride" CodeSystem="HL70371" Usage="P" /><ValueElement Value="HEPL" DisplayName="Lithium/Li  Heparin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="M5" DisplayName="M5" CodeSystem="HL70371" Usage="P" /><ValueElement Value="URETM" DisplayName="Ureaplasma transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="HEPN" DisplayName="Sodium/Na  Heparin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="THYMOL" DisplayName="Thymol" CodeSystem="HL70371" Usage="P" /><ValueElement Value="CARY" DisplayName="Cary Blair Medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="CTAD" DisplayName="CTAD (this should be spelled out if not universally understood)" CodeSystem="HL70371" Usage="P" /><ValueElement Value="FDP" DisplayName="Thrombin NIH; soybean trypsin inhibitor (Fibrin Degradation Products)" CodeSystem="HL70371" Usage="P" /><ValueElement Value="BOR" DisplayName="Borate Boric Acid" CodeSystem="HL70371" Usage="P" /><ValueElement Value="STUTM" DisplayName="Stuart transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="KARN" DisplayName="Karnovsky's fixative" CodeSystem="HL70371" Usage="P" /><ValueElement Value="PHENOL" DisplayName="Phenol" CodeSystem="HL70371" Usage="P" /><ValueElement Value="AMIES" DisplayName="Amies transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="C32" DisplayName="3.2%  Citrate" CodeSystem="HL70371" Usage="P" /><ValueElement Value="M4RT" DisplayName="M4-RT" CodeSystem="HL70371" Usage="P" /><ValueElement Value="BSKM" DisplayName="Buffered skim milk" CodeSystem="HL70371" Usage="P" /><ValueElement Value="HEPA" DisplayName="Ammonium heparin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="SILICA" DisplayName="Siliceous earth, 12 mg" CodeSystem="HL70371" Usage="P" /><ValueElement Value="ACET" DisplayName="Acetic Acid" CodeSystem="HL70371" Usage="P" /><ValueElement Value="VIRTM" DisplayName="Viral Transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="HNO3" DisplayName="Nitric Acid" CodeSystem="HL70371" Usage="P" /><ValueElement Value="FL10" DisplayName="Sodium Fluoride, 10mg" CodeSystem="HL70371" Usage="P" /><ValueElement Value="LIA" DisplayName="Lithium iodoacetate" CodeSystem="HL70371" Usage="P" /><ValueElement Value="M4" DisplayName="M4" CodeSystem="HL70371" Usage="P" /><ValueElement Value="CHLTM" DisplayName="Chlamydia transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="JKM" DisplayName="Jones Kendrick Medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="PVA" DisplayName="PVA (polyvinylalcohol)" CodeSystem="HL70371" Usage="P" /><ValueElement Value="RLM" DisplayName="Reagan Lowe Medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="HCL6" DisplayName="6N HCL" CodeSystem="HL70371" Usage="P" /><ValueElement Value="THYO" DisplayName="Thyoglycollate broth" CodeSystem="HL70371" Usage="P" /><ValueElement Value="NAPS" DisplayName="Sodium polyanethol sulfonate 0.35% in 0.85% sodium chloride" CodeSystem="HL70371" Usage="P" /><ValueElement Value="FL100" DisplayName="Sodium Fluoride, 100mg" CodeSystem="HL70371" Usage="P" /><ValueElement Value="MMDTM" DisplayName="MMD transport medium" CodeSystem="HL70371" Usage="P" /><ValueElement Value="BF10" DisplayName="Buffered 10% formalin" CodeSystem="HL70371" Usage="P" /><ValueElement Value="PAGE" DisplayName="Pages's Saline" CodeSystem="HL70371" Usage="P" /><ValueElement Value="WEST" DisplayName="Buffered Citrate (Westergren Sedimentation Rate)" CodeSystem="HL70371" Usage="P" /><ValueElement Value="TOLU" DisplayName="Toluene" CodeSystem="HL70371" Usage="P" /><ValueElement Value="EDTK" DisplayName="Potassium/K EDTA" CodeSystem="HL70371" Usage="P" /><ValueElement Value="SST" DisplayName="Serum Separator Tube (Polymer Gel)" CodeSystem="HL70371" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70617_2-9" Name="Address Usage" Description="Address Usage" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="V" DisplayName="Visit" CodeSystem="HL70617" Usage="P" /><ValueElement Value="M" DisplayName="Mailing" CodeSystem="HL70617" Usage="P" /><ValueElement Value="C" DisplayName="Classification" CodeSystem="HL70617" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70618" Name="Protection Code" Description="Protection Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="LI" DisplayName="Listed" CodeSystem="HL70618" Usage="P" /><ValueElement Value="UP" DisplayName="Unpublished" CodeSystem="HL70618" Usage="P" /><ValueElement Value="UL" DisplayName="Unlisted (Should not appear in directories)" CodeSystem="HL70618" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70061_2-5" Name="Check digit scheme" Description="Check digit scheme" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="NPI" DisplayName="Check digit algorithm in the US National Provider Identifier" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M11" DisplayName="Mod 11 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M10" DisplayName="Mod 10 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="ISO" DisplayName="ISO 7064: 1983" CodeSystem="HL70061" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70136_2-9" Name="Yes/no Indicator" Description="Yes/no Indicator" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="Y" DisplayName="Yes" CodeSystem="HL70136" Usage="P" /><ValueElement Value="N" DisplayName="No" CodeSystem="HL70136" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70505" Name="Cyclic Entry/Exit Indicator" Description="Cyclic Entry/Exit Indicator" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="*" DisplayName="The first service request in a cyclic group" CodeSystem="HL70505" Usage="P" /><ValueElement Value="#" DisplayName="The last service request in a cyclic group." CodeSystem="HL70505" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70306_2-5" Name="Location status" Description="Location status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70080" Name="Nature of Abnormal Testing" Description="Nature of Abnormal Testing" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="S" DisplayName="A sex-based population" CodeSystem="HL70080" Usage="P" /><ValueElement Value="B" DisplayName="Breed" CodeSystem="HL70080" Usage="P" /><ValueElement Value="R" DisplayName="A race-based population" CodeSystem="HL70080" Usage="P" /><ValueElement Value="ST" DisplayName="Strain" CodeSystem="HL70080" Usage="P" /><ValueElement Value="A" DisplayName="An age-based population" CodeSystem="HL70080" Usage="P" /><ValueElement Value="N" DisplayName="None - generic normal range" CodeSystem="HL70080" Usage="P" /><ValueElement Value="SP" DisplayName="Species" CodeSystem="HL70080" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70868" Name="Telecommunication expiration reason" Description="Telecommunication expiration reason" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Corrected" CodeSystem="HL70868" Usage="P" /><ValueElement Value="R" DisplayName="On request" CodeSystem="HL70868" Usage="P" /><ValueElement Value="M" DisplayName="Moved" CodeSystem="HL70868" Usage="P" /><ValueElement Value="E" DisplayName="Added in error" CodeSystem="HL70868" Usage="P" /><ValueElement Value="N" DisplayName="No longer in service" CodeSystem="HL70868" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70273" Name="Document Availability Status" Description="Document Availability Status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="CA" DisplayName="Deleted" CodeSystem="HL70273" Usage="P" /><ValueElement Value="AV" DisplayName="Available for patient care" CodeSystem="HL70273" Usage="P" /><ValueElement Value="OB" DisplayName="Obsolete" CodeSystem="HL70273" Usage="P" /><ValueElement Value="UN" DisplayName="Unavailable for patient care" CodeSystem="HL70273" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70552" Name="Advanced beneficiary notice override reason" Description="Advanced beneficiary notice override reason" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70074" Name="Diagnostic Service Section ID" Description="Diagnostic Service Section ID" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="RC" DisplayName="Respiratory Care (therapy)" CodeSystem="HL70074" Usage="P" /><ValueElement Value="RAD" DisplayName="Radiology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="PF" DisplayName="Pulmonary Function" CodeSystem="HL70074" Usage="P" /><ValueElement Value="EC" DisplayName="Electrocardiac (e.g., EKG,  EEC, Holter)" CodeSystem="HL70074" Usage="P" /><ValueElement Value="EN" DisplayName="Electroneuro (EEG, EMG,EP,PSG)" CodeSystem="HL70074" Usage="P" /><ValueElement Value="NRS" DisplayName="Nursing Service Measures" CodeSystem="HL70074" Usage="P" /><ValueElement Value="CT" DisplayName="CAT Scan" CodeSystem="HL70074" Usage="P" /><ValueElement Value="CTH" DisplayName="Cardiac Catheterization" CodeSystem="HL70074" Usage="P" /><ValueElement Value="TX" DisplayName="Toxicology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="RT" DisplayName="Radiation Therapy" CodeSystem="HL70074" Usage="P" /><ValueElement Value="NMR" DisplayName="Nuclear Magnetic Resonance" CodeSystem="HL70074" Usage="P" /><ValueElement Value="CH" DisplayName="Chemistry" CodeSystem="HL70074" Usage="P" /><ValueElement Value="OT" DisplayName="Occupational Therapy" CodeSystem="HL70074" Usage="P" /><ValueElement Value="BG" DisplayName="Blood Gases" CodeSystem="HL70074" Usage="P" /><ValueElement Value="BLB" DisplayName="Blood Bank" CodeSystem="HL70074" Usage="P" /><ValueElement Value="AU" DisplayName="Audiology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="IMM" DisplayName="Immunology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="VUS" DisplayName="Vascular Ultrasound" CodeSystem="HL70074" Usage="P" /><ValueElement Value="HM" DisplayName="Hematology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="XRC" DisplayName="Cineradiograph" CodeSystem="HL70074" Usage="P" /><ValueElement Value="MB" DisplayName="Microbiology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="OTH" DisplayName="Other" CodeSystem="HL70074" Usage="P" /><ValueElement Value="LAB" DisplayName="Laboratory" CodeSystem="HL70074" Usage="P" /><ValueElement Value="MYC" DisplayName="Mycology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="PT" DisplayName="Physical Therapy" CodeSystem="HL70074" Usage="P" /><ValueElement Value="NMS" DisplayName="Nuclear Medicine Scan" CodeSystem="HL70074" Usage="P" /><ValueElement Value="CP" DisplayName="Cytopathology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="MCB" DisplayName="Mycobacteriology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="OSL" DisplayName="Outside Lab" CodeSystem="HL70074" Usage="P" /><ValueElement Value="OUS" DisplayName="OB Ultrasound" CodeSystem="HL70074" Usage="P" /><ValueElement Value="ICU" DisplayName="Bedside ICU Monitoring" CodeSystem="HL70074" Usage="P" /><ValueElement Value="PHR" DisplayName="Pharmacy" CodeSystem="HL70074" Usage="P" /><ValueElement Value="SP" DisplayName="Surgical Pathology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="CUS" DisplayName="Cardiac Ultrasound" CodeSystem="HL70074" Usage="P" /><ValueElement Value="RX" DisplayName="Radiograph" CodeSystem="HL70074" Usage="P" /><ValueElement Value="VR" DisplayName="Virology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="PHY" DisplayName="Physician (Hx. Dx, admission note, etc.)" CodeSystem="HL70074" Usage="P" /><ValueElement Value="SR" DisplayName="Serology" CodeSystem="HL70074" Usage="P" /><ValueElement Value="RUS" DisplayName="Radiology Ultrasound" CodeSystem="HL70074" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70524" Name="Sequence condition" Description="Sequence condition" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Repeating cycle of orders" CodeSystem="HL70524" Usage="P" /><ValueElement Value="S" DisplayName="Sequence conditions" CodeSystem="HL70524" Usage="P" /><ValueElement Value="R" DisplayName="Reserved for possible future use" CodeSystem="HL70524" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70061_2-9" Name="Check Digit Scheme" Description="Check Digit Scheme" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="BCV" DisplayName="Bank Card Validation Number" CodeSystem="HL70061" Usage="P" /><ValueElement Value="NPI" DisplayName="Check digit algorithm in the US National Provider Identifier" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M11" DisplayName="Mod 11 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="M10" DisplayName="Mod 10 algorithm" CodeSystem="HL70061" Usage="P" /><ValueElement Value="ISO" DisplayName="ISO 7064: 1983" CodeSystem="HL70061" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70064_2-5" Name="Financial class" Description="Financial class" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70200" Name="Name type" Description="Name type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A" DisplayName="Alias Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="D" DisplayName="Display Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="L" DisplayName="Legal Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="N" DisplayName="Nickname /&quot;Call me&quot; Name/Street Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="K" DisplayName="Artist Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="P" DisplayName="Name of Partner/Spouse (retained for backward compatibility only)" CodeSystem="HL70200" Usage="P" /><ValueElement Value="R" DisplayName="Registered Name (animals only)" CodeSystem="HL70200" Usage="P" /><ValueElement Value="U" DisplayName="Unspecified" CodeSystem="HL70200" Usage="P" /><ValueElement Value="C" DisplayName="Adopted Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="M" DisplayName="Maiden Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="I" DisplayName="Licensing Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="S" DisplayName="Coded Pseudo-Name to ensure anonymity" CodeSystem="HL70200" Usage="P" /><ValueElement Value="B" DisplayName="Name at Birth" CodeSystem="HL70200" Usage="P" /><ValueElement Value="T" DisplayName="Indigenous/Tribal/Community Name" CodeSystem="HL70200" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70203" Name="Identifier type" Description="Identifier type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="LI" DisplayName="Labor and industries number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="OD" DisplayName="Optometrist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANON" DisplayName="Anonymous identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PRN" DisplayName="Provider number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SS" DisplayName="Social Security number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DN" DisplayName="Doctor number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MI" DisplayName="Military ID number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCR" DisplayName="Practitioner Medicare number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RI" DisplayName="Resource identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DDS" DisplayName="Dentist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CZ" DisplayName="Citizenship Card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AMA" DisplayName="American Medical Association Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DFN" DisplayName="Drug Furnishing or prescriptive authority Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AM" DisplayName="American Express" CodeSystem="HL70203" Usage="P" /><ValueElement Value="APRN" DisplayName="Advanced Practice Registered Nurse number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SR" DisplayName="State registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="TPR" DisplayName="Temporary Permanent Resident (Canada)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DO" DisplayName="Osteopathic License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NH" DisplayName="National Health Plan Identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NNxxx" DisplayName="National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PE" DisplayName="Living Subject Enterprise Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NE" DisplayName="National employer identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="VN" DisplayName="Visit number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NIIP" DisplayName="National Insurance Payor Identifier (Payor)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="EI" DisplayName="Employee number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PT" DisplayName="Patient external identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="LR" DisplayName="Local Registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PI" DisplayName="Patient internal identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DPM" DisplayName="Podiatrist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AN" DisplayName="Account number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ESN" DisplayName="Staff Enterprise Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BC" DisplayName="Bank Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MB" DisplayName="Member Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="WCN" DisplayName="Workers' Comp Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MC" DisplayName="Patient's Medicare number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MRT" DisplayName="Temporary Medical Record Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="XX" DisplayName="Organization identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DS" DisplayName="Discover Card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DP" DisplayName="Diplomatic Passport" CodeSystem="HL70203" Usage="P" /><ValueElement Value="FI" DisplayName="Facility ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BRN" DisplayName="Breed Registry Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANT" DisplayName="Temporary Account Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RN" DisplayName="Registered Nurse Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NI" DisplayName="National unique individual identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AND" DisplayName="Account number debitor" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CY" DisplayName="County number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CC" DisplayName="Cost Center number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCN" DisplayName="Microchip Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PRC" DisplayName="Permanent Resident Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MD" DisplayName="Medical License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NP" DisplayName="Nurse practitioner number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="EN" DisplayName="Employer number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MA" DisplayName="Patient Medicaid number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="QA" DisplayName="QA number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DEA" DisplayName="Drug Enforcement Administration registration number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SP" DisplayName="Study Permit" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCT" DisplayName="Marriage Certificate" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PC" DisplayName="Parole Card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PA" DisplayName="Physician Assistant number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GL" DisplayName="General ledger number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DL" DisplayName="Driver's license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="HC" DisplayName="Health Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="LN" DisplayName="License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="JHN" DisplayName="Jurisdictional health number (Canada)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PPIN" DisplayName="Medicare/CMS Performing Provider Identification Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="VS" DisplayName="VISA" CodeSystem="HL70203" Usage="P" /><ValueElement Value="IND" DisplayName="Indigenous/Aboriginal" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BR" DisplayName="Birth registry number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RRP" DisplayName="Railroad Retirement Provider" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MS" DisplayName="MasterCard" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PPN" DisplayName="Passport number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCD" DisplayName="Practitioner Medicaid number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GI" DisplayName="Guarantor internal identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="WP" DisplayName="Work Permit" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANC" DisplayName="Account number Creditor" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NPI" DisplayName="National provider identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PNT" DisplayName="Temporary Living Subject Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DR" DisplayName="Donor Registration Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="UPIN" DisplayName="Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GN" DisplayName="Guarantor external  identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RRI" DisplayName="Regional registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PEN" DisplayName="Pension Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="U" DisplayName="Unspecified identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MR" DisplayName="Medical record number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RPH" DisplayName="Pharmacist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NII" DisplayName="National Insurance Organization Identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DI" DisplayName="Diner's Club card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="VP" DisplayName="Visitor Permit" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PCN" DisplayName="Penitentiary/correctional institution Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="TAX" DisplayName="Tax ID number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SL" DisplayName="State license" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SN" DisplayName="Subscriber Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BA" DisplayName="Bank Account Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NCT" DisplayName="Naturalization Certificate" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BCT" DisplayName="Birth Certificate" CodeSystem="HL70203" Usage="P" /><ValueElement Value="TN" DisplayName="Treaty Number/ (Canada)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PN" DisplayName="Person number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CONM" DisplayName="Change of Name Document" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RR" DisplayName="Railroad Retirement number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="WC" DisplayName="WIC identifier" CodeSystem="HL70203" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70406_2-9" Name="Organization Unit Type" Description="Organization Unit Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="2" DisplayName="Physician Clinic" CodeSystem="HL70406" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70406" Usage="P" /><ValueElement Value="O" DisplayName="Office" CodeSystem="HL70406" Usage="P" /><ValueElement Value="3" DisplayName="Long Term Care" CodeSystem="HL70406" Usage="P" /><ValueElement Value="1" DisplayName="Hospital" CodeSystem="HL70406" Usage="P" /><ValueElement Value="5" DisplayName="Other" CodeSystem="HL70406" Usage="P" /><ValueElement Value="4" DisplayName="Acute Care" CodeSystem="HL70406" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70103" Name="Processing ID" Description="Processing ID" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="P" DisplayName="Production" CodeSystem="HL70103" Usage="P" /><ValueElement Value="D" DisplayName="Debugging" CodeSystem="HL70103" Usage="P" /><ValueElement Value="T" DisplayName="Training" CodeSystem="HL70103" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70904_2-9" Name="Security Check Scheme" Description="Security Check Scheme" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="BCV" DisplayName="Bank Card Validation Number" CodeSystem="HL70904" Usage="P" /><ValueElement Value="CCS" DisplayName="Credit Card Security code" CodeSystem="HL70904" Usage="P" /><ValueElement Value="VID" DisplayName="Version ID" CodeSystem="HL70904" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70301_2-9" Name="Universal ID Type" Description="Universal ID Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="UUID" DisplayName="Universal Unique Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="URI" DisplayName="Uniform Resource Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="ISO" DisplayName="ISO Object Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="GUID" DisplayName="globally unique identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="Random" DisplayName="Random" CodeSystem="HL70301" Usage="P" /><ValueElement Value="x500" DisplayName="X500 directory Name" CodeSystem="HL70301" Usage="P" /><ValueElement Value="M" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="DNS" DisplayName="Domain Name System" CodeSystem="HL70301" Usage="P" /><ValueElement Value="NPI" DisplayName="US National Provider Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="CLIP" DisplayName="Clinical laboratory Improvement Program" CodeSystem="HL70301" Usage="P" /><ValueElement Value="CLIA" DisplayName="Clinical Laboratory Improvement Amendments" CodeSystem="HL70301" Usage="P" /><ValueElement Value="EUI64" DisplayName="IEEE 64-bit Extended Unique Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="L" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="CAP" DisplayName="College of American Pathologist Accreditation Number" CodeSystem="HL70301" Usage="P" /><ValueElement Value="HCD" DisplayName="CEN Healthcare Coding Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="L,M,N" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="x400" DisplayName="X.400 MHS identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="N" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="HL7" DisplayName="HL7 registration schemes" CodeSystem="HL70301" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70868_2-9" Name="Telecommunication Expiration Reason" Description="Telecommunication Expiration Reason" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Corrected" CodeSystem="HL70868" Usage="P" /><ValueElement Value="M" DisplayName="Moved" CodeSystem="HL70868" Usage="P" /><ValueElement Value="R" DisplayName="On request" CodeSystem="HL70868" Usage="P" /><ValueElement Value="E" DisplayName="Added in error" CodeSystem="HL70868" Usage="P" /><ValueElement Value="N" DisplayName="No longer in service" CodeSystem="HL70868" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70363" Name="Assigning authority" Description="Assigning authority" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70116_2-5" Name="Bed Status" Description="Bed Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Closed" CodeSystem="HL70116" Usage="P" /><ValueElement Value="O" DisplayName="Occupied" CodeSystem="HL70116" Usage="P" /><ValueElement Value="H" DisplayName="Housekeeping" CodeSystem="HL70116" Usage="P" /><ValueElement Value="U" DisplayName="Unoccupied" CodeSystem="HL70116" Usage="P" /><ValueElement Value="I" DisplayName="Isolated" CodeSystem="HL70116" Usage="P" /><ValueElement Value="K" DisplayName="Contaminated" CodeSystem="HL70116" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70305_2-9" Name="Person Location Type" Description="Person Location Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="S" DisplayName="SNF" CodeSystem="HL70305" Usage="P" /><ValueElement Value="D" DisplayName="Department" CodeSystem="HL70305" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70305" Usage="P" /><ValueElement Value="P" DisplayName="Phone" CodeSystem="HL70305" Usage="P" /><ValueElement Value="C" DisplayName="Clinic" CodeSystem="HL70305" Usage="P" /><ValueElement Value="N" DisplayName="Nursing Unit" CodeSystem="HL70305" Usage="P" /><ValueElement Value="O" DisplayName="Provider's Office" CodeSystem="HL70305" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70360_2-5" Name="Degree/license/certificate" Description="Degree/license/certificate" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="BSL" DisplayName="Bachelor of Science - Law" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNP" DisplayName="Certified Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PharmD" DisplayName="Doctor of Pharmacy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BE" DisplayName="Bachelor or Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MSL" DisplayName="Master of Science - Law" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DIP" DisplayName="Diploma" CodeSystem="HL70360" Usage="P" /><ValueElement Value="EMT" DisplayName="Emergency Medical Technician" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MEE" DisplayName="Master of Electrical Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MT" DisplayName="Master of Theology" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MA" DisplayName="Master of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="FPNP" DisplayName="Family Practice Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="RPH" DisplayName="Registered Pharmacist" CodeSystem="HL70360" Usage="P" /><ValueElement Value="TS" DisplayName="Trade School Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MCE" DisplayName="Master of Civil Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="NP" DisplayName="Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHE" DisplayName="Doctor of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CRN" DisplayName="Certified Registered Nurse" CodeSystem="HL70360" Usage="P" /><ValueElement Value="NG" DisplayName="Non-Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNM" DisplayName="Certified Nurse Midwife" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PN" DisplayName="Advanced Practice Nurse" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MFA" DisplayName="Master of Fine Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHS" DisplayName="Doctor of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MD" DisplayName="Doctor of Medicine" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BSN" DisplayName="Bachelor on Science - Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DED" DisplayName="Doctor of Education" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AE" DisplayName="Associate of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AAS" DisplayName="Associate of Applied Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="EMTP" DisplayName="Emergency Medical Technician - Paramedic" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DO" DisplayName="Doctor of Osteopathy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MDI" DisplayName="Master of Divinity" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MED" DisplayName="Master of Education" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MSN" DisplayName="Master of Science - Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PA" DisplayName="Physician Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CANP" DisplayName="Certified Adult Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="ME" DisplayName="Master of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHD" DisplayName="Doctor of Philosophy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AA" DisplayName="Associate of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MDA" DisplayName="Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BFA" DisplayName="Bachelor of Fine Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="HS" DisplayName="High School Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BT" DisplayName="Bachelor of Theology" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BN" DisplayName="Bachelor of Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MS" DisplayName="Master of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="JD" DisplayName="Juris Doctor" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BS" DisplayName="Bachelor of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="SEC" DisplayName="Secretarial Certificate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CPNP" DisplayName="Certified Pediatric Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CER" DisplayName="Certificate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="ABA" DisplayName="Associate of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CMA" DisplayName="Certified Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MBA" DisplayName="Master of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BA" DisplayName="Bachelor of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNS" DisplayName="Certified Nurse Specialist" CodeSystem="HL70360" Usage="P" /><ValueElement Value="RMA" DisplayName="Registered Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MME" DisplayName="Master of Mechanical Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BBA" DisplayName="Bachelor of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DBA" DisplayName="Doctor of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AS" DisplayName="Associate of Science" CodeSystem="HL70360" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70472" Name="TQ conjunction ID" Description="TQ conjunction ID" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Actuation Time" CodeSystem="HL70472" Usage="P" /><ValueElement Value="A" DisplayName="Asynchronous" CodeSystem="HL70472" Usage="P" /><ValueElement Value="S" DisplayName="Synchronous" CodeSystem="HL70472" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70136_2-5" Name="Yes/no indicator" Description="Yes/no indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="Y" DisplayName="Yes" CodeSystem="HL70136" Usage="P" /><ValueElement Value="N" DisplayName="No" CodeSystem="HL70136" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70308_2-5" Name="Floor" Description="Floor" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70363_2-9" Name="Assigning Authority" Description="Assigning Authority" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70363" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70298" Name="CP range type" Description="CP range type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="F" DisplayName="Flat-rate. Apply the entire price to this interval, do not pro-rate the price if the full interval has not occurred/been consumed" CodeSystem="HL70298" Usage="P" /><ValueElement Value="P" DisplayName="Pro-rate. Apply this price to this interval, pro-rated by whatever portion of the interval has occurred/been consumed" CodeSystem="HL70298" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70297" Name="CN ID source" Description="CN ID source" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70297_2-5" Name="CN ID source" Description="CN ID source" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70465_2-9" Name="Name/Address Representation" Description="Name/Address Representation" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A" DisplayName="Alphabetic (i.e., Default or some single-byte)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="P" DisplayName="Phonetic (i.e., ASCII, Katakana, Hiragana, etc.)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="I" DisplayName="Ideographic (i.e., Kanji)" CodeSystem="HL70465" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70303_2-5" Name="Room" Description="Room" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70444_2-5" Name="Name assembly order" Description="Name assembly order" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="F" DisplayName="Prefix Family Middle Given Suffix" CodeSystem="HL70444" Usage="P" /><ValueElement Value="G" DisplayName="Prefix Given Middle Family Suffix" CodeSystem="HL70444" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70307_2-5" Name="Building" Description="Building" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70200_2-9" Name="Name Type" Description="Name Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="D" DisplayName="Customary Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="NB" DisplayName="Newborn Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="P" DisplayName="Name of Partner/Spouse" CodeSystem="HL70200" Usage="P" /><ValueElement Value="M" DisplayName="Maiden Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="T" DisplayName="Indigenous/Tribal" CodeSystem="HL70200" Usage="P" /><ValueElement Value="BAD" DisplayName="Bad Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="N" DisplayName="Nickname" CodeSystem="HL70200" Usage="P" /><ValueElement Value="I" DisplayName="Licensing Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="MSK" DisplayName="Masked" CodeSystem="HL70200" Usage="P" /><ValueElement Value="TEMP" DisplayName="Temporary Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="B" DisplayName="Birth name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="NAV" DisplayName="Temporarily Unavailable" CodeSystem="HL70200" Usage="P" /><ValueElement Value="REL" DisplayName="Religious" CodeSystem="HL70200" Usage="P" /><ValueElement Value="K" DisplayName="Business name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="A" DisplayName="Assigned" CodeSystem="HL70200" Usage="P" /><ValueElement Value="L" DisplayName="Official Registry Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="R" DisplayName="Registered Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="C" DisplayName="Adopted Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="NOUSE" DisplayName="No Longer To Be Used" CodeSystem="HL70200" Usage="P" /><ValueElement Value="F" DisplayName="Fathers Name" CodeSystem="HL70200" Usage="P" /><ValueElement Value="S" DisplayName="Pseudonym" CodeSystem="HL70200" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70200" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70356" Name="Alternate character set handling scheme" Description="Alternate character set handling scheme" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ISO 2022-1994" DisplayName="This standard is titled &quot;Information Technology - Character Code Structure and Extension Technique&quot;. ." CodeSystem="HL70356" Usage="P" /><ValueElement Value="2.3" DisplayName="The character set switching mode specified in HL7 2.5, section 2.7.2, &quot;Escape sequences supporting multiple character sets&quot; and section 2.A.46, &quot;XPN - extended person name&quot;." CodeSystem="HL70356" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70289_2-5" Name="County/parish" Description="County/parish" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70528" Name="Event related period" Description="Event related period" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ACM" DisplayName="before breakfast (from lat. ante cibus matutinus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="HS" DisplayName="the hour of sleep (e.g., H18-22)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="PCV" DisplayName="after dinner (from lat. post cibus vespertinus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="ACD" DisplayName="before lunch (from lat. ante cibus diurnus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="PCD" DisplayName="after lunch (from lat. post cibus diurnus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="ACV" DisplayName="before dinner (from lat. ante cibus vespertinus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="ICV" DisplayName="between dinner and the hour of sleep" CodeSystem="HL70528" Usage="P" /><ValueElement Value="AC" DisplayName="before meal (from lat. ante cibus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="ICM" DisplayName="between breakfast and lunch" CodeSystem="HL70528" Usage="P" /><ValueElement Value="PCM" DisplayName="after breakfast (from lat. post cibus matutinus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="IC" DisplayName="between meals (from lat. inter cibus)" CodeSystem="HL70528" Usage="P" /><ValueElement Value="ICD" DisplayName="between lunch and dinner" CodeSystem="HL70528" Usage="P" /><ValueElement Value="PC" DisplayName="after meal (from lat. post cibus)" CodeSystem="HL70528" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70340" Name="Procedure Code Modifier" Description="Procedure Code Modifier" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70616" Name="Address Expiration Reason" Description="Address Expiration Reason" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="M" DisplayName="Moved" CodeSystem="HL70616" Usage="P" /><ValueElement Value="E" DisplayName="Added in error" CodeSystem="HL70616" Usage="P" /><ValueElement Value="C" DisplayName="Corrected" CodeSystem="HL70616" Usage="P" /><ValueElement Value="R" DisplayName="On request" CodeSystem="HL70616" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70190_2-9" Name="Address Type" Description="Address Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="L" DisplayName="Legal Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BI" DisplayName="Billing Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70190" Usage="P" /><ValueElement Value="C" DisplayName="Current Or Temporary" CodeSystem="HL70190" Usage="P" /><ValueElement Value="F" DisplayName="Country Of Origin" CodeSystem="HL70190" Usage="P" /><ValueElement Value="M" DisplayName="Mailing" CodeSystem="HL70190" Usage="P" /><ValueElement Value="TM" DisplayName="Tube Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="SH" DisplayName="Shipping Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="B" DisplayName="Firm/Business" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BDL" DisplayName="Birth delivery location  (address where birth occurred)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BR" DisplayName="Residence at birth (home address at time of birth)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="O" DisplayName="Office/Business" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BA" DisplayName="Bad address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="P" DisplayName="Permanent" CodeSystem="HL70190" Usage="P" /><ValueElement Value="RH" DisplayName="Registry home. Refers to the information system, typically managed by a public health agency, that stores patient information such as immunization histories or cancer data, regardless of where the patient obtains services." CodeSystem="HL70190" Usage="P" /><ValueElement Value="V" DisplayName="Vacation" CodeSystem="HL70190" Usage="P" /><ValueElement Value="S" DisplayName="Service Location" CodeSystem="HL70190" Usage="P" /><ValueElement Value="N" DisplayName="Birth (nee)  (birth address, not otherwise specified)" CodeSystem="HL70190" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70291" Name="Subtype of referenced data" Description="Subtype of referenced data" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="JPEG" DisplayName="Joint Photographic Experts Group" CodeSystem="HL70291" Usage="P" /><ValueElement Value="DICOM" DisplayName="Digital Imaging and Communications in Medicine" CodeSystem="HL70291" Usage="P" /><ValueElement Value="JOT" DisplayName="Electronic ink data (Jot 1.0 standard)" CodeSystem="HL70291" Usage="P" /><ValueElement Value="PICT" DisplayName="PICT format image data" CodeSystem="HL70291" Usage="P" /><ValueElement Value="FAX" DisplayName="Facsimile data" CodeSystem="HL70291" Usage="P" /><ValueElement Value="SGML" DisplayName="Standard Generalized Markup Language (HL7 V2.3.1 and later)" CodeSystem="HL70291" Usage="P" /><ValueElement Value="RTF" DisplayName="Rich Text Format" CodeSystem="HL70291" Usage="P" /><ValueElement Value="GIF" DisplayName="Graphics Interchange Format" CodeSystem="HL70291" Usage="P" /><ValueElement Value="TIFF" DisplayName="TIFF image data" CodeSystem="HL70291" Usage="P" /><ValueElement Value="x-hl7-cda-level-one" DisplayName="HL7 Clinical Document Architecture Level One document" CodeSystem="HL70291" Usage="P" /><ValueElement Value="XML" DisplayName="Extensible Markup Language (HL7 V2.3.1 and later)" CodeSystem="HL70291" Usage="P" /><ValueElement Value="Octet-stream" DisplayName="Uninterpreted binary data" CodeSystem="HL70291" Usage="P" /><ValueElement Value="HTML" DisplayName="Hypertext Markup Language" CodeSystem="HL70291" Usage="P" /><ValueElement Value="PostScript" DisplayName="PostScript program" CodeSystem="HL70291" Usage="P" /><ValueElement Value="BASIC" DisplayName="ISDN PCM audio data" CodeSystem="HL70291" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70834" Name="MIME Types" Description="MIME Types" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="audio" DisplayName="Audio data" CodeSystem="HL70834" Usage="P" /><ValueElement Value="text" DisplayName="Text data" CodeSystem="HL70834" Usage="P" /><ValueElement Value="model" DisplayName="Model data" CodeSystem="HL70834" Usage="P" /><ValueElement Value="application" DisplayName="Application data" CodeSystem="HL70834" Usage="P" /><ValueElement Value="multipart" DisplayName="MIME multipart package" CodeSystem="HL70834" Usage="P" /><ValueElement Value="image" DisplayName="Image data" CodeSystem="HL70834" Usage="P" /><ValueElement Value="video" DisplayName="Video data" CodeSystem="HL70834" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70065" Name="Specimen Action Code" Description="Specimen Action Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A" DisplayName="Add ordered tests to the existing specimen" CodeSystem="HL70065" Usage="P" /><ValueElement Value="O" DisplayName="Specimen obtained by service other than Lab" CodeSystem="HL70065" Usage="P" /><ValueElement Value="P" DisplayName="Pending specimen; Order sent prior to delivery" CodeSystem="HL70065" Usage="P" /><ValueElement Value="S" DisplayName="Schedule the tests specified below" CodeSystem="HL70065" Usage="P" /><ValueElement Value="G" DisplayName="Generated order; reflex order" CodeSystem="HL70065" Usage="P" /><ValueElement Value="R" DisplayName="Revised order" CodeSystem="HL70065" Usage="P" /><ValueElement Value="L" DisplayName="Lab to obtain specimen from patient" CodeSystem="HL70065" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70503" Name="Sequence/Results Flag" Description="Sequence/Results Flag" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Cyclical" CodeSystem="HL70503" Usage="P" /><ValueElement Value="R" DisplayName="Reserved for future use" CodeSystem="HL70503" Usage="P" /><ValueElement Value="S" DisplayName="Sequential" CodeSystem="HL70503" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70363_2-5" Name="Assigning authority" Description="Assigning authority" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70506" Name="Service Request Relationship" Description="Service Request Relationship" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="E" DisplayName="Exclusive" CodeSystem="HL70506" Usage="P" /><ValueElement Value="T" DisplayName="Tapering" CodeSystem="HL70506" Usage="P" /><ValueElement Value="C" DisplayName="Compound" CodeSystem="HL70506" Usage="P" /><ValueElement Value="N" DisplayName="Nurse prerogative" CodeSystem="HL70506" Usage="P" /><ValueElement Value="S" DisplayName="Simultaneous" CodeSystem="HL70506" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70354" Name="Message structure" Description="Message structure" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="RRA_O18" DisplayName="O18" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OPL_O37" DisplayName="O37" CodeSystem="HL70354" Usage="P" /><ValueElement Value="DFT_P11" DisplayName="P11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SDR_S31" DisplayName="S31, S36" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P06" DisplayName="P06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EAR_U08" DisplayName="U08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RDR_RDR" DisplayName="RDR" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A37" DisplayName="A37" CodeSystem="HL70354" Usage="P" /><ValueElement Value="NMQ_N01" DisplayName="N01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PPR_PC1" DisplayName="PC1, PC2, PC3" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M10" DisplayName="M10" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A17" DisplayName="A17" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M02" DisplayName="M02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PMU_B01" DisplayName="B01, B02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_E03" DisplayName="E03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RRE_O12" DisplayName="O12, O26" CodeSystem="HL70354" Usage="P" /><ValueElement Value="DOC_T12" DisplayName="T12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RQA_I08" DisplayName="I08, I09, I10, I11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E04" DisplayName="E04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="TCU_U10" DisplayName="U10, U11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M03" DisplayName="M03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A50" DisplayName="A50, A51" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SLR_S28" DisplayName="S28, S29, S30, S34, S35" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BRP_O30" DisplayName="O30" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A43" DisplayName="A43, A44" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A21" DisplayName="A21, A22, A23, A25, A26, A27, A29, A32, A33" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OML_O35" DisplayName="O35" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORU_R01" DisplayName="R01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OML_O21" DisplayName="O21" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RRI_I12" DisplayName="I12, I13, I14, I15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M08" DisplayName="M08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A30" DisplayName="A30, A34, A35, A36, A46, A47, A48, A49" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P05" DisplayName="P05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORG_O20" DisplayName="O20" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SDR_S32" DisplayName="S32, S37" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SRR_S01" DisplayName="S01, S02, S03, S04, S05, S06, S07, S08, S09, S10, S11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_Q01" DisplayName="Q01, Q26, Q27, Q28, Q29, Q30" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORU_R30" DisplayName="R30" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M12" DisplayName="M12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORS_O06" DisplayName="O06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SIU_S12" DisplayName="S12, S13, S14, S15, S16, S17, S18, S19, S20, S21, S22, S23, S24, S26" CodeSystem="HL70354" Usage="P" /><ValueElement Value="VXU_V04" DisplayName="V04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RTB_K13" DisplayName="K13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORL_O22" DisplayName="O22" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A03" DisplayName="A03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFK_M01" DisplayName="M01, M02, M03, M04, M05, M06, M07, M08, M09, M10, M11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMN_O07" DisplayName="O07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A18" DisplayName="A18" CodeSystem="HL70354" Usage="P" /><ValueElement Value="DFT_P03" DisplayName="P03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ACK" DisplayName="Varies" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRF_W02" DisplayName="W02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OSQ_Q06" DisplayName="Q06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RQC_I05" DisplayName="I05, I06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E02" DisplayName="E02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PPV_PCA" DisplayName="PCA" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PGL_PC6" DisplayName="PC6, PC7, PC8" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SSR_U04" DisplayName="U04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ESU_U01" DisplayName="U01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RDS_O13" DisplayName="O13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E12" DisplayName="E12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OUL_R22" DisplayName="R22" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QCK_Q02" DisplayName="Q02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORD_O04" DisplayName="O04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PEX_P07" DisplayName="P07, P08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A12" DisplayName="A12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="INR_U06" DisplayName="U06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RAS_O17" DisplayName="O17" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RQP_I04" DisplayName="I04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_Q13" DisplayName="Q13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BTS_O31" DisplayName="O31" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_K11" DisplayName="K11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_R02" DisplayName="R02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OSR_Q06" DisplayName="Q06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORF_R04" DisplayName="R04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ROR_ROR" DisplayName="ROR" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A60" DisplayName="A60" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PRR_PC5" DisplayName="PC5" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RCL_I06" DisplayName="I06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OUL_R21" DisplayName="R21" CodeSystem="HL70354" Usage="P" /><ValueElement Value="DSR_Q01" DisplayName="Q01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMS_O05" DisplayName="O05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RDY_K15" DisplayName="K15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P10" DisplayName="P10" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OML_O33" DisplayName="O33" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_T12" DisplayName="T12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E24" DisplayName="E24" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M15" DisplayName="M15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PPG_PCG" DisplayName="PCC, PCG, PCH, PCJ" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SQM_S25" DisplayName="S25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MDM_T02" DisplayName="T02, T04, T06, T08, T10" CodeSystem="HL70354" Usage="P" /><ValueElement Value="DSR_Q03" DisplayName="Q03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OUL_R23" DisplayName="R23" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFR_M01" DisplayName="M01, M02, M03," CodeSystem="HL70354" Usage="P" /><ValueElement Value="RCI_I05" DisplayName="I05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_E22" DisplayName="E22" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_K25" DisplayName="K25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M05" DisplayName="M05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A02" DisplayName="A02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OPU_R25" DisplayName="R25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PPT_PCL" DisplayName="PCL" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EAC_U07" DisplayName="U07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_Q11" DisplayName="Q11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SSU_U03" DisplayName="U03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RPI_I01" DisplayName="I01, I04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PMU_B04" DisplayName="B04, B05, B06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RGV_O15" DisplayName="O15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="VXQ_V01" DisplayName="V01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A39" DisplayName="A39, A40, A41, A42" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RER_RER" DisplayName="RER" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMB_O27" DisplayName="O27" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P12" DisplayName="P12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A05" DisplayName="A05, A14, A28, A31" CodeSystem="HL70354" Usage="P" /><ValueElement Value="NMR_N01" DisplayName="N01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORP_O10" DisplayName="O10" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_Q15" DisplayName="Q15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A20" DisplayName="A20" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OUL_R24" DisplayName="R24" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M11" DisplayName="M11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PMU_B07" DisplayName="B07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A16" DisplayName="A16" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M07" DisplayName="M07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OPR_O38" DisplayName="O38" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_E03" DisplayName="E03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RPL_I02" DisplayName="I02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_PC4" DisplayName="PC4, PC9, PCE, PCK" CodeSystem="HL70354" Usage="P" /><ValueElement Value="REF_I12" DisplayName="I12, I13, I14, I15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EAN_U09" DisplayName="U09" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_K21" DisplayName="K21" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_K31" DisplayName="K31" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFR_M04" DisplayName="M04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORI_O24" DisplayName="O24" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E15" DisplayName="E15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_Q11" DisplayName="Q11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFR_M07" DisplayName="M07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M09" DisplayName="M09" CodeSystem="HL70354" Usage="P" /><ValueElement Value="VXX_V02" DisplayName="V02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADR_A19" DisplayName="A19" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A52" DisplayName="A52, A53" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PTR_PCF" DisplayName="PCF" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P02" DisplayName="P02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORU_W01" DisplayName="W01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RPI_I04" DisplayName="I04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="INU_U05" DisplayName="U05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PMU_B03" DisplayName="B03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMG_O19" DisplayName="O19" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RAR_RAR" DisplayName="RAR" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E20" DisplayName="E20" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BPS_O29" DisplayName="O29" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M16" DisplayName="M16" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A15" DisplayName="A15" CodeSystem="HL70354" Usage="P" /><ValueElement Value="NMD_N02" DisplayName="N02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="VXR_V03" DisplayName="V03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E10" DisplayName="E10" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M06" DisplayName="M06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SQR_S25" DisplayName="S25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RPR_I03" DisplayName="I03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RPA_I08" DisplayName="I08, I09. I10, I11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="STC_S33" DisplayName="S33" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMP_O09" DisplayName="O09" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORM_O01" DisplayName="O01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QCN_J01" DisplayName="J01, J02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M13" DisplayName="M13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A45" DisplayName="A45" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MDM_T01" DisplayName="T01, T03, T05, T07, T09, T11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORL_O34" DisplayName="O34" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A38" DisplayName="A38" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RRD_O14" DisplayName="O14" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E01" DisplayName="E01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_A19" DisplayName="A19" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMD_O03" DisplayName="O03" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M04" DisplayName="M04" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QVR_Q17" DisplayName="Q17" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A61" DisplayName="A61, A62" CodeSystem="HL70354" Usage="P" /><ValueElement Value="OMI_O23" DisplayName="O23" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A01" DisplayName="A01, A04, A08, A13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFR_M05" DisplayName="M05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORB_O28" DisplayName="O28" CodeSystem="HL70354" Usage="P" /><ValueElement Value="CRM_C01" DisplayName="C01, C02, C03, C04, C05, C06, C07, C08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="LSU_U12" DisplayName="U12, U13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M01" DisplayName="M01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BAR_P01" DisplayName="P01" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A09" DisplayName="A09, A10, A11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RGR_RGR" DisplayName="RGR" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RQI_I01" DisplayName="I01, I02, I03, I07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PMU_B08" DisplayName="B08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="PPP_PCB" DisplayName="PCB, PCD" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORR_O02" DisplayName="O02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E13" DisplayName="E13" CodeSystem="HL70354" Usage="P" /><ValueElement Value="EHC_E21" DisplayName="E21" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFN_M17" DisplayName="M17" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFQ_M01" DisplayName="M01, M02, M03, M04, M05, M06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="UDM_Q05" DisplayName="Q05" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORN_O08" DisplayName="O08" CodeSystem="HL70354" Usage="P" /><ValueElement Value="MFR_M06" DisplayName="M06" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_K23" DisplayName="K23, K24" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ESR_U02" DisplayName="U02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RDE_O11" DisplayName="O11, O25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RRG_O16" DisplayName="O16" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A24" DisplayName="A24" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A54" DisplayName="A54, A55" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QRY_Q02" DisplayName="Q02" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SUR_P09" DisplayName="P09" CodeSystem="HL70354" Usage="P" /><ValueElement Value="CSU_C09" DisplayName="C09, C10, C11, C12" CodeSystem="HL70354" Usage="P" /><ValueElement Value="RSP_E22" DisplayName="E22" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QBP_Q21" DisplayName="Q21, Q22, Q23,Q24, Q25" CodeSystem="HL70354" Usage="P" /><ValueElement Value="SRM_S01" DisplayName="S01, S02, S03, S04, S05, S06, S07, S08, S09, S10, S11" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ORL_O36" DisplayName="O36" CodeSystem="HL70354" Usage="P" /><ValueElement Value="ADT_A06" DisplayName="A06, A07" CodeSystem="HL70354" Usage="P" /><ValueElement Value="BRT_O32" DisplayName="O32" CodeSystem="HL70354" Usage="P" /><ValueElement Value="QSB_Q16" DisplayName="Q16" CodeSystem="HL70354" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70476" Name="Medically Necessary Duplicate Procedure Reason" Description="Medically Necessary Duplicate Procedure Reason" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70202_2-9" Name="Telecommunication Equipment Type" Description="Telecommunication Equipment Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="FX" DisplayName="Fax" CodeSystem="HL70202" Usage="P" /><ValueElement Value="TTY" DisplayName="Teletypewriter" CodeSystem="HL70202" Usage="P" /><ValueElement Value="PH" DisplayName="Telephone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="SAT" DisplayName="Satellite Phone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="BP" DisplayName="Beeper" CodeSystem="HL70202" Usage="P" /><ValueElement Value="CP" DisplayName="Cellular or Mobile Phone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="TDD" DisplayName="Telecommunications Device for the Deaf" CodeSystem="HL70202" Usage="P" /><ValueElement Value="Internet" DisplayName="Internet Address" CodeSystem="HL70202" Usage="P" /><ValueElement Value="MD" DisplayName="Modem" CodeSystem="HL70202" Usage="P" /><ValueElement Value="X.400" DisplayName="X.400 email address" CodeSystem="HL70202" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70204" Name="Organizational name type" Description="Organizational name type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SL" DisplayName="Stock exchange listing name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="A" DisplayName="Alias name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="D" DisplayName="Display name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="L" DisplayName="Legal name" CodeSystem="HL70204" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70201" Name="Telecommunication use code" Description="Telecommunication use code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="VHN" DisplayName="Vacation Home Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="ORN" DisplayName="Other Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="PRS" DisplayName="Personal" CodeSystem="HL70201" Usage="P" /><ValueElement Value="BPN" DisplayName="Beeper Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="PRN" DisplayName="Primary Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="EMR" DisplayName="Emergency Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="ASN" DisplayName="Answering Service Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="NET" DisplayName="Network (email) Address" CodeSystem="HL70201" Usage="P" /><ValueElement Value="WPN" DisplayName="Work Number" CodeSystem="HL70201" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70304" Name="Bed" Description="Bed" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70163" Name="Body site" Description="Body site" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="RN" DisplayName="Right Naris" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LEJ" DisplayName="Left External Jugular" CodeSystem="HL70163" Usage="P" /><ValueElement Value="NB" DisplayName="Nebulized" CodeSystem="HL70163" Usage="P" /><ValueElement Value="PA" DisplayName="Perianal" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LIJ" DisplayName="Left Internal Jugular" CodeSystem="HL70163" Usage="P" /><ValueElement Value="OS" DisplayName="Left Eye" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LACF" DisplayName="Left Antecubital Fossa" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RACF" DisplayName="Right Antecubital Fossa" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RT" DisplayName="Right Thigh" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LAC" DisplayName="Left Anterior Chest" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RLFA" DisplayName="Right Lower Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LG" DisplayName="Left Gluteus Medius" CodeSystem="HL70163" Usage="P" /><ValueElement Value="REJ" DisplayName="Right External Jugular" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RH" DisplayName="Right Hand" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RF" DisplayName="Right Foot" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LLFA" DisplayName="Left Lower Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RAC" DisplayName="Right Anterior Chest" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RUFA" DisplayName="Right Upper Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RA" DisplayName="Right Arm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RG" DisplayName="Right Gluteus Medius" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LT" DisplayName="Left Thigh" CodeSystem="HL70163" Usage="P" /><ValueElement Value="CT" DisplayName="Chest Tube" CodeSystem="HL70163" Usage="P" /><ValueElement Value="BE" DisplayName="Bilateral Ears" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LVG" DisplayName="Left Ventragluteal" CodeSystem="HL70163" Usage="P" /><ValueElement Value="BU" DisplayName="Buttock" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LUAQ" DisplayName="Left Upper Abd Quadrant" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RVG" DisplayName="Right Ventragluteal" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LE" DisplayName="Left Ear" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LF" DisplayName="Left Foot" CodeSystem="HL70163" Usage="P" /><ValueElement Value="PERIN" DisplayName="Perineal" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RMFA" DisplayName="Right Mid Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LN" DisplayName="Left Naris" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LVL" DisplayName="Left Vastus Lateralis" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LA" DisplayName="Left Arm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LMFA" DisplayName="Left Mid Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RIJ" DisplayName="Right Internal Jugular" CodeSystem="HL70163" Usage="P" /><ValueElement Value="OD" DisplayName="Right Eye" CodeSystem="HL70163" Usage="P" /><ValueElement Value="BN" DisplayName="Bilateral Nares" CodeSystem="HL70163" Usage="P" /><ValueElement Value="OU" DisplayName="Bilateral Eyes" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RPC" DisplayName="Right Posterior Chest" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LSC" DisplayName="Left Subclavian" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RLAQ" DisplayName="Rt Lower Abd Quadrant" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LLAQ" DisplayName="Left Lower Abd Quadrant" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LUFA" DisplayName="Left Upper Forearm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LD" DisplayName="Left Deltoid" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RE" DisplayName="Right Ear" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RVL" DisplayName="Right Vastus Lateralis" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LPC" DisplayName="Left Posterior Chest" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RSC" DisplayName="Right Subclavian" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RUAQ" DisplayName="Right Upper Abd Quadrant" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LH" DisplayName="Left Hand" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RUA" DisplayName="Right Upper Arm" CodeSystem="HL70163" Usage="P" /><ValueElement Value="RD" DisplayName="Right Deltoid" CodeSystem="HL70163" Usage="P" /><ValueElement Value="LUA" DisplayName="Left Upper Arm" CodeSystem="HL70163" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70326_2-5" Name="Visit Indicator" Description="Visit Indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="V" DisplayName="Visit level" CodeSystem="HL70326" Usage="P" /><ValueElement Value="A" DisplayName="Account level" CodeSystem="HL70326" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70136" Name="Yes/no indicator" Description="Yes/no indicator" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="No" CodeSystem="HL70136" Usage="P" /><ValueElement Value="Y" DisplayName="Yes" CodeSystem="HL70136" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70396" Name="Coding System" Description="Coding System" Version="2.x" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="HL70186" DisplayName="Practitioner Category " CodeSystem="HL70396" /><ValueElement Value="HL70010" DisplayName="Physician ID " CodeSystem="HL70396" /><ValueElement Value="HL70177" DisplayName="Confidentiality Code " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2008" DisplayName="German Alpha-ID v2008" CodeSystem="HL70396" /><ValueElement Value="HL70251" DisplayName="Action Taken In Response To The Event " CodeSystem="HL70396" /><ValueElement Value="I9CP" DisplayName="ICD-9CM Procedure codes" CodeSystem="HL70396" /><ValueElement Value="HL70384" DisplayName="Substance Type " CodeSystem="HL70396" /><ValueElement Value="HL70353" DisplayName="CWE Statuses " CodeSystem="HL70396" /><ValueElement Value="HL70166" DisplayName="RX Component Type " CodeSystem="HL70396" /><ValueElement Value="HL70303" DisplayName="Room " CodeSystem="HL70396" /><ValueElement Value="HL70374" DisplayName="System Induced Contaminants" CodeSystem="HL70396" /><ValueElement Value="HL70403" DisplayName="Language Ability " CodeSystem="HL70396" /><ValueElement Value="HL70532" DisplayName="Expanded Yes/No Indicator " CodeSystem="HL70396" /><ValueElement Value="GMDC2008" DisplayName="German Major Diagnostic Codes v2008" CodeSystem="HL70396" /><ValueElement Value="HL70442" DisplayName="Location Service Code" CodeSystem="HL70396" /><ValueElement Value="HL70369" DisplayName="Specimen Role " CodeSystem="HL70396" /><ValueElement Value="HL70146" DisplayName="Amount Type " CodeSystem="HL70396" /><ValueElement Value="HL70048" DisplayName="What Subject Filter" CodeSystem="HL70396" /><ValueElement Value="HL70473" DisplayName="Formulary Status " CodeSystem="HL70396" /><ValueElement Value="HGNC-Symb" DisplayName="HGNC-symb" CodeSystem="HL70396" /><ValueElement Value="HL70060" DisplayName="Error Code" CodeSystem="HL70396" /><ValueElement Value="HL70354" DisplayName="Message Structure " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2006" DisplayName="German Alpha-ID v2006" CodeSystem="HL70396" /><ValueElement Value="NULLFL" DisplayName="Flavors of NULL" CodeSystem="HL70396" /><ValueElement Value="HL70742" DisplayName="DRG Status Financial Calculation " CodeSystem="HL70396" /><ValueElement Value="HL70089" DisplayName="Procedure Coding Method" CodeSystem="HL70396" /><ValueElement Value="VIS" DisplayName="Clinicians are required to track the Vaccine Information Sheet (VIS) that was shared with the recipient of a vaccination. This code system contains codes that identify the document type and the owner of the document." CodeSystem="HL70396" /><ValueElement Value="CMSOEC" DisplayName="OCE Edit Code" CodeSystem="HL70396" /><ValueElement Value="HL70307" DisplayName="Building " CodeSystem="HL70396" /><ValueElement Value="HL70299" DisplayName="Encoding " CodeSystem="HL70396" /><ValueElement Value="HL70123" DisplayName="Result Status " CodeSystem="HL70396" /><ValueElement Value="HL70248" DisplayName="Product Source " CodeSystem="HL70396" /><ValueElement Value="HL70113" DisplayName="Discharged To Location " CodeSystem="HL70396" /><ValueElement Value="HL70065" DisplayName="Specimen Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70315" DisplayName="Living Will Code " CodeSystem="HL70396" /><ValueElement Value="HL70107" DisplayName="Deferred Response Type" CodeSystem="HL70396" /><ValueElement Value="dbVar-GL" DisplayName="dbVar-Germline" CodeSystem="HL70396" /><ValueElement Value="JJ1017" DisplayName="Japanese Image Examination Cache" CodeSystem="HL70396" /><ValueElement Value="HL70053" DisplayName="Diagnosis Coding Method" CodeSystem="HL70396" /><ValueElement Value="HL70279" DisplayName="Allow Substitutions Code " CodeSystem="HL70396" /><ValueElement Value="HL70500" DisplayName="Consent Disclosure Level " CodeSystem="HL70396" /><ValueElement Value="HL70207" DisplayName="Processing Mode" CodeSystem="HL70396" /><ValueElement Value="HL70293" DisplayName="Billing Category " CodeSystem="HL70396" /><ValueElement Value="I10P0" DisplayName="ICD-10 Place of Occurrence" CodeSystem="HL70396" /><ValueElement Value="HL70478" DisplayName="Formulary Status " CodeSystem="HL70396" /><ValueElement Value="HL70653" DisplayName="Date Format " CodeSystem="HL70396" /><ValueElement Value="HL70376" DisplayName="Special Handling Code " CodeSystem="HL70396" /><ValueElement Value="HL70114" DisplayName="Diet Type " CodeSystem="HL70396" /><ValueElement Value="HL70172" DisplayName="Veterans Military Status " CodeSystem="HL70396" /><ValueElement Value="HL70250" DisplayName="Relatedness Assessment " CodeSystem="HL70396" /><ValueElement Value="I10P" DisplayName="International Classification of Diseases, 10th Revision, Procedure Coding System (ICD-10-PCS)" CodeSystem="HL70396" /><ValueElement Value="HL70148" DisplayName="Money Or Percentage Indicator " CodeSystem="HL70396" /><ValueElement Value="GDRG2007" DisplayName="G-DRG German DRG Codes v2007" CodeSystem="HL70396" /><ValueElement Value="HL70937" DisplayName="Observation Sub-Type " CodeSystem="HL70396" /><ValueElement Value="HL70001" DisplayName="Administrative Sex" CodeSystem="HL70396" /><ValueElement Value="HL70291" DisplayName="Subtype Of Referenced Data " CodeSystem="HL70396" /><ValueElement Value="W4" DisplayName="WHO record # code with ASTM extension" CodeSystem="HL70396" /><ValueElement Value="HL70210" DisplayName="Relational Conjunction " CodeSystem="HL70396" /><ValueElement Value="UML" DisplayName="Unified Medical Language" CodeSystem="HL70396" /><ValueElement Value="HL70929" DisplayName="Weight Units " CodeSystem="HL70396" /><ValueElement Value="HL70450" DisplayName="Event Type " CodeSystem="HL70396" /><ValueElement Value="HL70150" DisplayName="Certification Patient Type " CodeSystem="HL70396" /><ValueElement Value="HL70137" DisplayName="Mail Claim Party " CodeSystem="HL70396" /><ValueElement Value="HL70529" DisplayName="Precision" CodeSystem="HL70396" /><ValueElement Value="HL70412" DisplayName="Category Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70140" DisplayName="Military Service " CodeSystem="HL70396" /><ValueElement Value="HL70242" DisplayName="Primary Observer's Qualification " CodeSystem="HL70396" /><ValueElement Value="HL70908" DisplayName="Package Type " CodeSystem="HL70396" /><ValueElement Value="CDCREC" DisplayName="Race &amp; Ethnicity - CDC" CodeSystem="HL70396" /><ValueElement Value="OPS2011" DisplayName="OPS Germany v2011" CodeSystem="HL70396" /><ValueElement Value="HL70968" DisplayName="Container Material" CodeSystem="HL70396" /><ValueElement Value="HL70323" DisplayName="Action Code" CodeSystem="HL70396" /><ValueElement Value="HL70333" DisplayName="Driver’S License Issuing Authority " CodeSystem="HL70396" /><ValueElement Value="HL70064" DisplayName="Financial Class " CodeSystem="HL70396" /><ValueElement Value="ACR" DisplayName="American College of Radiology finding codes" CodeSystem="HL70396" /><ValueElement Value="cdcgs1vis" DisplayName="VIS Bar Codes (IIS)" CodeSystem="HL70396" /><ValueElement Value="HL70527" DisplayName="Calendar Alignment " CodeSystem="HL70396" /><ValueElement Value="HL70935" DisplayName="Process Interruption Reason " CodeSystem="HL70396" /><ValueElement Value="HL70970" DisplayName="Online Verification Result" CodeSystem="HL70396" /><ValueElement Value="HL70465" DisplayName="Name/Address Representation " CodeSystem="HL70396" /><ValueElement Value="HL70497" DisplayName="Consent Mode " CodeSystem="HL70396" /><ValueElement Value="HL70042" DisplayName="Company Plan Code " CodeSystem="HL70396" /><ValueElement Value="ICF" DisplayName="International Classification of Functioning, Disability and Health (ICF)" CodeSystem="HL70396" /><ValueElement Value="HL70072" DisplayName="Insurance Plan ID " CodeSystem="HL70396" /><ValueElement Value="HL70749" DisplayName="DRG Grouping Status " CodeSystem="HL70396" /><ValueElement Value="HL70051" DisplayName="Diagnosis Code " CodeSystem="HL70396" /><ValueElement Value="NIP009" DisplayName="Reported adverse event previously" CodeSystem="HL70396" /><ValueElement Value="I10G2005" DisplayName="ICD 10 Germany 2005" CodeSystem="HL70396" /><ValueElement Value="HL70491" DisplayName="Specimen Quality " CodeSystem="HL70396" /><ValueElement Value="HL70504" DisplayName="Sequence Condition Code " CodeSystem="HL70396" /><ValueElement Value="HL70325" DisplayName="Location Relationship ID " CodeSystem="HL70396" /><ValueElement Value="HL70906" DisplayName="Shipment Priority " CodeSystem="HL70396" /><ValueElement Value="MEDX" DisplayName="Medical Economics Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="HL70443" DisplayName="Provider Role " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2016" DisplayName="ICD 10 Germany v2016" CodeSystem="HL70396" /><ValueElement Value="HL70615" DisplayName="User Authentication Credential Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70246" DisplayName="Product Available For Inspection " CodeSystem="HL70396" /><ValueElement Value="HL70388" DisplayName="Processing Type " CodeSystem="HL70396" /><ValueElement Value="HL70453" DisplayName="Health Care Provider Classification " CodeSystem="HL70396" /><ValueElement Value="C5" DisplayName="CPT-5" CodeSystem="HL70396" /><ValueElement Value="HL70047" DisplayName="Danger Code" CodeSystem="HL70396" /><ValueElement Value="HL70305" DisplayName="Person Location Type " CodeSystem="HL70396" /><ValueElement Value="HL70163" DisplayName="Body Site " CodeSystem="HL70396" /><ValueElement Value="HL70667" DisplayName="Device Data State " CodeSystem="HL70396" /><ValueElement Value="HL70961" DisplayName="Device Type" CodeSystem="HL70396" /><ValueElement Value="HL70508" DisplayName="Blood Product Processing Requirements " CodeSystem="HL70396" /><ValueElement Value="POS" DisplayName="POS Codes" CodeSystem="HL70396" /><ValueElement Value="HGVS.c" DisplayName="HGVS- Transcript syntax" CodeSystem="HL70396" /><ValueElement Value="HL70188" DisplayName="Operator ID " CodeSystem="HL70396" /><ValueElement Value="HL70487" DisplayName="Specimen Type " CodeSystem="HL70396" /><ValueElement Value="HL70428" DisplayName="Incident Type Code " CodeSystem="HL70396" /><ValueElement Value="Ensembl-P" DisplayName="Ensembl protein reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70525" DisplayName="Privilege " CodeSystem="HL70396" /><ValueElement Value="HL70008" DisplayName="Acknowledgment Code " CodeSystem="HL70396" /><ValueElement Value="HL70357" DisplayName="Message Error Condition Codes " CodeSystem="HL70396" /><ValueElement Value="HL70536" DisplayName="Certificate Status " CodeSystem="HL70396" /><ValueElement Value="HL70570" DisplayName="Payment Method Code " CodeSystem="HL70396" /><ValueElement Value="RSPMODE" DisplayName="Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities." CodeSystem="HL70396" /><ValueElement Value="HL70422" DisplayName="Triage Code " CodeSystem="HL70396" /><ValueElement Value="ICS" DisplayName="ICCS" CodeSystem="HL70396" /><ValueElement Value="HL70334" DisplayName="Disabled Person Code " CodeSystem="HL70396" /><ValueElement Value="SCT2" DisplayName="SNOMED Clinical Terms alphanumeric codes" CodeSystem="HL70396" /><ValueElement Value="HL70475" DisplayName="Charge Type Reason " CodeSystem="HL70396" /><ValueElement Value="HL70927" DisplayName="Arm Stick " CodeSystem="HL70396" /><ValueElement Value="HL70169" DisplayName="Reporting Priority " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2011" DisplayName="ICD 10 Germany v2011" CodeSystem="HL70396" /><ValueElement Value="HL70076" DisplayName="Message Type " CodeSystem="HL70396" /><ValueElement Value="AS4E" DisplayName="AS4 Neurophysiology Codes" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2010" DisplayName="ICD 10 Germany v2010" CodeSystem="HL70396" /><ValueElement Value="HL70220" DisplayName="Living Arrangements " CodeSystem="HL70396" /><ValueElement Value="HL70358" DisplayName="Practitioner Group " CodeSystem="HL70396" /><ValueElement Value="HL70255" DisplayName="Duration Categories " CodeSystem="HL70396" /><ValueElement Value="CDS" DisplayName="CDC Surveillance" CodeSystem="HL70396" /><ValueElement Value="HL70145" DisplayName="Room Type " CodeSystem="HL70396" /><ValueElement Value="ROLECLASS" DisplayName="Used initially for contact roles." CodeSystem="HL70396" /><ValueElement Value="HL70202" DisplayName="Telecommunication Equipment Type " CodeSystem="HL70396" /><ValueElement Value="I10" DisplayName="ICD-10" CodeSystem="HL70396" /><ValueElement Value="HL70256" DisplayName="Time Delay Post Challenge " CodeSystem="HL70396" /><ValueElement Value="GMDC2004" DisplayName="German Major Diagnostic Codes v 1004" CodeSystem="HL70396" /><ValueElement Value="HL70258" DisplayName="Relationship Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70571" DisplayName="Invoice Processing Results Status " CodeSystem="HL70396" /><ValueElement Value="HL70518" DisplayName="Override Type " CodeSystem="HL70396" /><ValueElement Value="HL70964" DisplayName="Service Reason" CodeSystem="HL70396" /><ValueElement Value="CDCINDUSTRY2010" DisplayName="Industry CDC Census 2010" CodeSystem="HL70396" /><ValueElement Value="HL70329" DisplayName="Quantity Method " CodeSystem="HL70396" /><ValueElement Value="HL70554" DisplayName="Invoice Reason Codes " CodeSystem="HL70396" /><ValueElement Value="O3012004" DisplayName="OPS Germany 2004" CodeSystem="HL70396" /><ValueElement Value="HL70265" DisplayName="Specialty Type " CodeSystem="HL70396" /><ValueElement Value="OPS2009" DisplayName="OPS Germany v2008" CodeSystem="HL70396" /><ValueElement Value="HL70216" DisplayName="Patient Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70002" DisplayName="Marital Status" CodeSystem="HL70396" /><ValueElement Value="HL70462" DisplayName="Location Cost Center " CodeSystem="HL70396" /><ValueElement Value="HL70074" DisplayName="Diagnostic Service Section ID " CodeSystem="HL70396" /><ValueElement Value="HL70425" DisplayName="Newborn Code " CodeSystem="HL70396" /><ValueElement Value="HL70066" DisplayName="Employment Status " CodeSystem="HL70396" /><ValueElement Value="HL70262" DisplayName="Privacy Level " CodeSystem="HL70396" /><ValueElement Value="MDDX" DisplayName="Medispan Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="JC10" DisplayName="JLAC/JSLM, nationwide laboratory code" CodeSystem="HL70396" /><ValueElement Value="I10G2006" DisplayName="ICD 10 Germany 2006" CodeSystem="HL70396" /><ValueElement Value="HL70167" DisplayName="Substitution Status " CodeSystem="HL70396" /><ValueElement Value="HL70319" DisplayName="Department Cost Center " CodeSystem="HL70396" /><ValueElement Value="HL70007" DisplayName="Admission Type " CodeSystem="HL70396" /><ValueElement Value="HL70759" DisplayName="Status Admission " CodeSystem="HL70396" /><ValueElement Value="HL70483" DisplayName="Authorization Mode " CodeSystem="HL70396" /><ValueElement Value="HL70228" DisplayName="Diagnosis Classification " CodeSystem="HL70396" /><ValueElement Value="HL70112" DisplayName="Discharge Disposition " CodeSystem="HL70396" /><ValueElement Value="HL70836" DisplayName="Problem Severity " CodeSystem="HL70396" /><ValueElement Value="HL70252" DisplayName="Causality Observations " CodeSystem="HL70396" /><ValueElement Value="HL70537" DisplayName="Institution " CodeSystem="HL70396" /><ValueElement Value="HL70365" DisplayName="Equipment State " CodeSystem="HL70396" /><ValueElement Value="HL70905" DisplayName="Shipment Status " CodeSystem="HL70396" /><ValueElement Value="ensembl-T" DisplayName="Ensembl transcript reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70139" DisplayName="Employer Information Data " CodeSystem="HL70396" /><ValueElement Value="WC" DisplayName="WHO ATC" CodeSystem="HL70396" /><ValueElement Value="HL70542" DisplayName="Specimen Source Type Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70947" DisplayName="Class Of Trade" CodeSystem="HL70396" /><ValueElement Value="HL70091" DisplayName="Query Priority " CodeSystem="HL70396" /><ValueElement Value="ISOnnnn" DisplayName="ISO Defined Codes where nnnn is the ISO table number. (deprecated)" CodeSystem="HL70396" CodePattern="ISO.+" /><ValueElement Value="HL70534" DisplayName="Notify Clergy Code" CodeSystem="HL70396" /><ValueElement Value="HL70474" DisplayName="Organization Unit Type " CodeSystem="HL70396" /><ValueElement Value="HL70416" DisplayName="Procedure DRG Type " CodeSystem="HL70396" /><ValueElement Value="HL70090" DisplayName="Procedure Type" CodeSystem="HL70396" /><ValueElement Value="HL70739" DisplayName="DRG Status Patient " CodeSystem="HL70396" /><ValueElement Value="FIPS6_4" DisplayName="FIPS 6-4 (County)" CodeSystem="HL70396" /><ValueElement Value="HL70790" DisplayName="Approving Regulatory Agency " CodeSystem="HL70396" /><ValueElement Value="HL70361" DisplayName="Application " CodeSystem="HL70396" /><ValueElement Value="HL70254" DisplayName="Kind Of Quantity " CodeSystem="HL70396" /><ValueElement Value="HL70304" DisplayName="Bed " CodeSystem="HL70396" /><ValueElement Value="HL70524" DisplayName="Sequence Condition" CodeSystem="HL70396" /><ValueElement Value="HL70385" DisplayName="Manufacturer Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70241" DisplayName="Patient Outcome " CodeSystem="HL70396" /><ValueElement Value="HL70225" DisplayName="Escort Required " CodeSystem="HL70396" /><ValueElement Value="ENZC" DisplayName="Enzyme Codes" CodeSystem="HL70396" /><ValueElement Value="JC8" DisplayName="Japanese Chemistry" CodeSystem="HL70396" /><ValueElement Value="GMDC2007" DisplayName="German Major Diagnostic Codes v2007" CodeSystem="HL70396" /><ValueElement Value="HL70219" DisplayName="Recurring Service Code " CodeSystem="HL70396" /><ValueElement Value="HL70232" DisplayName="Insurance Company Contact Reason" CodeSystem="HL70396" /><ValueElement Value="HL70421" DisplayName="Severity Of Illness Code " CodeSystem="HL70396" /><ValueElement Value="HL70231" DisplayName="Student Status " CodeSystem="HL70396" /><ValueElement Value="HL70136" DisplayName="Yes/No Indicator " CodeSystem="HL70396" /><ValueElement Value="FIPS55_3" DisplayName="Populated Places (FIPS 55-3)" CodeSystem="HL70396" /><ValueElement Value="HL70171" DisplayName="Citizenship " CodeSystem="HL70396" /><ValueElement Value="HL70331" DisplayName="Facility Type " CodeSystem="HL70396" /><ValueElement Value="CAS" DisplayName="Chemical abstract codes" CodeSystem="HL70396" /><ValueElement Value="HL70912" DisplayName="Participation" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2010" DisplayName="German Alpha-ID v2010" CodeSystem="HL70396" /><ValueElement Value="HL70235" DisplayName="Report Source " CodeSystem="HL70396" /><ValueElement Value="HL70117" DisplayName="Account Status " CodeSystem="HL70396" /><ValueElement Value="HL70702" DisplayName="Cycle Type " CodeSystem="HL70396" /><ValueElement Value="HL70371" DisplayName="Additive/Preservative " CodeSystem="HL70396" /><ValueElement Value="I10C" DisplayName="International Classification of Diseases, 10th Revision, Clinical Modification (ICD-10-CM)" CodeSystem="HL70396" /><ValueElement Value="HL70468" DisplayName="Payment Adjustment Code " CodeSystem="HL70396" /><ValueElement Value="HL70306" DisplayName="Location Status " CodeSystem="HL70396" /><ValueElement Value="HL70952" DisplayName="Confidentiality Classification" CodeSystem="HL70396" /><ValueElement Value="HL70343" DisplayName="Military Handicapped Program Code " CodeSystem="HL70396" /><ValueElement Value="ISO4217" DisplayName="ISO4217 Currency Codes" CodeSystem="HL70396" /><ValueElement Value="HL70308" DisplayName="Floor " CodeSystem="HL70396" /><ValueElement Value="UC" DisplayName="UCDS" CodeSystem="HL70396" /><ValueElement Value="HL70301" DisplayName="Universal ID Type " CodeSystem="HL70396" /><ValueElement Value="CDCOCCUPATION2010" DisplayName="Occupation CDC Census 2010" CodeSystem="HL70396" /><ValueElement Value="PLR" DisplayName="CDC PHLIP Lab result codes that are not covered in SNOMED at the time of this implementation" CodeSystem="HL70396" /><ValueElement Value="HL70394" DisplayName="Response Modality " CodeSystem="HL70396" /><ValueElement Value="HL70341" DisplayName="Guarantor Credit Rating Code " CodeSystem="HL70396" /><ValueElement Value="HL70268" DisplayName="Override " CodeSystem="HL70396" /><ValueElement Value="HL70324" DisplayName="Location Characteristic ID " CodeSystem="HL70396" /><ValueElement Value="HL70778" DisplayName="Item Type " CodeSystem="HL70396" /><ValueElement Value="HL70206" DisplayName="Segment Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70387" DisplayName="Command Response " CodeSystem="HL70396" /><ValueElement Value="HL70516" DisplayName="Error Severity " CodeSystem="HL70396" /><ValueElement Value="OBSMETHOD" DisplayName="Observation Method Code" CodeSystem="HL70396" /><ValueElement Value="HL70109" DisplayName="Report Priority" CodeSystem="HL70396" /><ValueElement Value="HL70922" DisplayName="Certification Category Code " CodeSystem="HL70396" /><ValueElement Value="HL70020" DisplayName="Unused Table" CodeSystem="HL70396" /><ValueElement Value="ISCN" DisplayName="International System for Human Cytogenetic Nomenclature (ISCN)" CodeSystem="HL70396" /><ValueElement Value="HCPCS" DisplayName="CMS (formerly HCFA) Common Procedure Coding System" CodeSystem="HL70396" /><ValueElement Value="CAPECC" DisplayName="College of American Pathologists Electronic Cancer Checklist" CodeSystem="HL70396" /><ValueElement Value="I9C" DisplayName="International Classification of Diseases, 9th Revision, Clinical Modification (ICD-9-CM)" CodeSystem="HL70396" /><ValueElement Value="CDCEDACUITY" DisplayName="CDC Emergency Department Acuity" CodeSystem="HL70396" /><ValueElement Value="HL70043" DisplayName="Condition Code " CodeSystem="HL70396" /><ValueElement Value="HL70270" DisplayName="Document Type " CodeSystem="HL70396" /><ValueElement Value="HL70108" DisplayName="Query Results Level" CodeSystem="HL70396" /><ValueElement Value="HL70464" DisplayName="Facility ID " CodeSystem="HL70396" /><ValueElement Value="HL70535" DisplayName="Signature Code" CodeSystem="HL70396" /><ValueElement Value="HL70418" DisplayName="Procedure Priority " CodeSystem="HL70396" /><ValueElement Value="HL70447" DisplayName="Breed Code " CodeSystem="HL70396" /><ValueElement Value="AS4" DisplayName="ASTM E1238/ E1467 Universal" CodeSystem="HL70396" /><ValueElement Value="HL70417" DisplayName="Tissue Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70517" DisplayName="Inform Person Code " CodeSystem="HL70396" /><ValueElement Value="HL70459" DisplayName="Reimbursement Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70330" DisplayName="Marketing Basis " CodeSystem="HL70396" /><ValueElement Value="HL70215" DisplayName="Publicity Code " CodeSystem="HL70396" /><ValueElement Value="HL70052" DisplayName="Diagnosis Type " CodeSystem="HL70396" /><ValueElement Value="refSeq-G" DisplayName="NCBI - genomic and chromosome reference sequences" CodeSystem="HL70396" /><ValueElement Value="HL70234" DisplayName="Report Timing " CodeSystem="HL70396" /><ValueElement Value="SCT" DisplayName="SNOMED Clinical Terms" CodeSystem="HL70396" /><ValueElement Value="HL70437" DisplayName="Alert Device Code " CodeSystem="HL70396" /><ValueElement Value="HL70257" DisplayName="Nature Of Challenge " CodeSystem="HL70396" /><ValueElement Value="HL70946" DisplayName="Supplier Type" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2008" DisplayName="ICD 10 Germany v2008" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2014" DisplayName="ICD 10 Germany v2014" CodeSystem="HL70396" /><ValueElement Value="HL70289" DisplayName="County/Parish " CodeSystem="HL70396" /><ValueElement Value="IBT0001" DisplayName="ISBT 128 Standard transfusion/transplantation data items" CodeSystem="HL70396" /><ValueElement Value="HL70178" DisplayName="File Level Event Code " CodeSystem="HL70396" /><ValueElement Value="OPS2010" DisplayName="OPS Germany v2010" CodeSystem="HL70396" /><ValueElement Value="HL70253" DisplayName="Indirect Exposure Mechanism " CodeSystem="HL70396" /><ValueElement Value="I10G2004" DisplayName="ICD 10 Germany 2004" CodeSystem="HL70396" /><ValueElement Value="OPS2008" DisplayName="OPS Germany v2008" CodeSystem="HL70396" /><ValueElement Value="HL70793" DisplayName="Ruling Act " CodeSystem="HL70396" /><ValueElement Value="O3012006" DisplayName="Ops Germany 2006" CodeSystem="HL70396" /><ValueElement Value="HL70446" DisplayName="Species Code " CodeSystem="HL70396" /><ValueElement Value="ATC" DisplayName="American Type Culture Collection" CodeSystem="HL70396" /><ValueElement Value="CPTM" DisplayName="CPT Modifier Code" CodeSystem="HL70396" /><ValueElement Value="HL70480" DisplayName="Pharmacy Order Types " CodeSystem="HL70396" /><ValueElement Value="HL70513" DisplayName="Blood Product Transfusion/Disposition Status " CodeSystem="HL70396" /><ValueElement Value="HL70372" DisplayName="Specimen Component " CodeSystem="HL70396" /><ValueElement Value="HL70550" DisplayName="Body Parts " CodeSystem="HL70396" /><ValueElement Value="HL70278" DisplayName="Filler Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70070" DisplayName="Specimen Source Codes" CodeSystem="HL70396" /><ValueElement Value="HL70214" DisplayName="Special Program Code " CodeSystem="HL70396" /><ValueElement Value="HL70068" DisplayName="Guarantor Type " CodeSystem="HL70396" /><ValueElement Value="HL70501" DisplayName="Consent Non-Disclosure Reason " CodeSystem="HL70396" /><ValueElement Value="HL70520" DisplayName="Message Waiting Priority " CodeSystem="HL70396" /><ValueElement Value="HL70391" DisplayName="Segment Group " CodeSystem="HL70396" /><ValueElement Value="HL70397" DisplayName="Sequencing " CodeSystem="HL70396" /><ValueElement Value="GDRG2009" DisplayName="G-DRG German DRG Codes v2008" CodeSystem="HL70396" /><ValueElement Value="IC2" DisplayName="ICHPPC-2" CodeSystem="HL70396" /><ValueElement Value="GDRG2006" DisplayName="G-DRG German DRG Codes v 2006" CodeSystem="HL70396" /><ValueElement Value="HL70111" DisplayName="Delete Account Code " CodeSystem="HL70396" /><ValueElement Value="HL70392" DisplayName="Match Reason " CodeSystem="HL70396" /><ValueElement Value="ICD10CA" DisplayName="ICD-10 Canada" CodeSystem="HL70396" /><ValueElement Value="HL70244" DisplayName="Single Use Device " CodeSystem="HL70396" /><ValueElement Value="ART" DisplayName="WHO Adverse Reaction Terms" CodeSystem="HL70396" /><ValueElement Value="HL70360" DisplayName="Degree/License/Certificate " CodeSystem="HL70396" /><ValueElement Value="HL70183" DisplayName="Active/Inactive " CodeSystem="HL70396" /><ValueElement Value="CDCA" DisplayName="CDC Analyte Codes" CodeSystem="HL70396" /><ValueElement Value="HL70098" DisplayName="Type Of Agreement " CodeSystem="HL70396" /><ValueElement Value="FDAUNII" DisplayName="Unique Ingredient Identifier (UNII)" CodeSystem="HL70396" /><ValueElement Value="HL70356" DisplayName="Alternate Character Set Handling Scheme " CodeSystem="HL70396" /><ValueElement Value="HL70085" DisplayName="Observation Result Status Codes Interpretation" CodeSystem="HL70396" /><ValueElement Value="OHA" DisplayName="Omaha System" CodeSystem="HL70396" /><ValueElement Value="HL70926" DisplayName="Phlebotomy Status " CodeSystem="HL70396" /><ValueElement Value="UB04FL67" DisplayName="Present on Admission" CodeSystem="HL70396" /><ValueElement Value="HL70110" DisplayName="Transfer To Bad Debt Code " CodeSystem="HL70396" /><ValueElement Value="GDRG2004" DisplayName="G-DRG German DRG Codes v 2004" CodeSystem="HL70396" /><ValueElement Value="HL70838" DisplayName="Problem Perspective " CodeSystem="HL70396" /><ValueElement Value="HL70531" DisplayName="Institution " CodeSystem="HL70396" /><ValueElement Value="ROLECODE" DisplayName="Participation Mode" CodeSystem="HL70396" /><ValueElement Value="HL70224" DisplayName="Transport Arranged " CodeSystem="HL70396" /><ValueElement Value="HL70282" DisplayName="Referral Disposition " CodeSystem="HL70396" /><ValueElement Value="HL70187" DisplayName="Provider Billing " CodeSystem="HL70396" /><ValueElement Value="HL70962" DisplayName="Device Status" CodeSystem="HL70396" /><ValueElement Value="PRTCPTNMODE" DisplayName="Paticipation Mode Code" CodeSystem="HL70396" /><ValueElement Value="HL70321" DisplayName="Dispense Method " CodeSystem="HL70396" /><ValueElement Value="HL70285" DisplayName="Insurance Company ID Codes " CodeSystem="HL70396" /><ValueElement Value="EDLEVEL" DisplayName="Education Level" CodeSystem="HL70396" /><ValueElement Value="HOT" DisplayName="Japanese Nationwide Medicine Code" CodeSystem="HL70396" /><ValueElement Value="HL70300" DisplayName="Namespace ID " CodeSystem="HL70396" /><ValueElement Value="I9CDX" DisplayName="ICD-9CM Diagnosis codes" CodeSystem="HL70396" /><ValueElement Value="CLP" DisplayName="CLIP" CodeSystem="HL70396" /><ValueElement Value="HL70507" DisplayName="Observation Result Handling " CodeSystem="HL70396" /><ValueElement Value="HL70375" DisplayName="Artificial Blood " CodeSystem="HL70396" /><ValueElement Value="HL70669" DisplayName="Load Status " CodeSystem="HL70396" /><ValueElement Value="HL70963" DisplayName="Device Safety" CodeSystem="HL70396" /><ValueElement Value="HL70755" DisplayName="DRG Status Weight At Birth " CodeSystem="HL70396" /><ValueElement Value="HL70514" DisplayName="Transfusion Adverse Reaction " CodeSystem="HL70396" /><ValueElement Value="OPS2015" DisplayName="OPS Germany v2015" CodeSystem="HL70396" /><ValueElement Value="HL70298" DisplayName="CP Range Type " CodeSystem="HL70396" /><ValueElement Value="HL70272" DisplayName="Document Confidentiality Status " CodeSystem="HL70396" /><ValueElement Value="NIP002" DisplayName="Substance refusal reason" CodeSystem="HL70396" /><ValueElement Value="HL70131" DisplayName="Contact Role " CodeSystem="HL70396" /><ValueElement Value="HL70049" DisplayName="Department Code " CodeSystem="HL70396" /><ValueElement Value="HGVS.g" DisplayName="HGVS- Genomic syntax" CodeSystem="HL70396" /><ValueElement Value="HL70144" DisplayName="Eligibility Source " CodeSystem="HL70396" /><ValueElement Value="HL70519" DisplayName="Override Reason " CodeSystem="HL70396" /><ValueElement Value="HL70152" DisplayName="Second Opinion Documentation Received " CodeSystem="HL70396" /><ValueElement Value="HL70124" DisplayName="Transportation Mode " CodeSystem="HL70396" /><ValueElement Value="HL70441" DisplayName="Immunization Registry Status " CodeSystem="HL70396" /><ValueElement Value="HL70616" DisplayName="Address Expiration Reason " CodeSystem="HL70396" /><ValueElement Value="HL70155" DisplayName="Accept/Application Acknowledgment Conditions " CodeSystem="HL70396" /><ValueElement Value="HL70411" DisplayName="Supplemental Service Information Values " CodeSystem="HL70396" /><ValueElement Value="HL70552" DisplayName="Advanced Beneficiary Notice Override Reason " CodeSystem="HL70396" /><ValueElement Value="HL70023" DisplayName="Admit Source " CodeSystem="HL70396" /><ValueElement Value="HL70488" DisplayName="Specimen Collection Method " CodeSystem="HL70396" /><ValueElement Value="HL70495" DisplayName="Body Site Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70921" DisplayName="Certification Type Code " CodeSystem="HL70396" /><ValueElement Value="RC" DisplayName="Read Classification" CodeSystem="HL70396" /><ValueElement Value="HL70021" DisplayName="Bad Debt Agency Code " CodeSystem="HL70396" /><ValueElement Value="HL70103" DisplayName="Processing ID " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2015" DisplayName="ICD 10 Germany v2015" CodeSystem="HL70396" /><ValueElement Value="HL70189" DisplayName="Ethnic Group " CodeSystem="HL70396" /><ValueElement Value="HL70212" DisplayName="Nationality " CodeSystem="HL70396" /><ValueElement Value="CLINVAR-V" DisplayName="ClinVar Variant ID" CodeSystem="HL70396" /><ValueElement Value="HL70222" DisplayName="Contact Reason " CodeSystem="HL70396" /><ValueElement Value="HL70340" DisplayName="Procedure Code Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70229" DisplayName="DRG Payor " CodeSystem="HL70396" /><ValueElement Value="HL70133" DisplayName="Procedure Practitioner Identifier Code Type" CodeSystem="HL70396" /><ValueElement Value="HL70106" DisplayName="Query/Response Format Code" CodeSystem="HL70396" /><ValueElement Value="HL70484" DisplayName="Dispense Type " CodeSystem="HL70396" /><ValueElement Value="HL70223" DisplayName="Living Dependency " CodeSystem="HL70396" /><ValueElement Value="HL70005" DisplayName="Race " CodeSystem="HL70396" /><ValueElement Value="HL70944" DisplayName="Transport Route" CodeSystem="HL70396" /><ValueElement Value="HL70121" DisplayName="Response Flag " CodeSystem="HL70396" /><ValueElement Value="HL70913" DisplayName="ISO-4217 Monetary Denomination Code " CodeSystem="HL70396" /><ValueElement Value="HL70033" DisplayName="Route" CodeSystem="HL70396" /><ValueElement Value="HL70386" DisplayName="Supplier Identifier " CodeSystem="HL70396" /><ValueElement Value="NAICS" DisplayName="Industry (NAICS)" CodeSystem="HL70396" /><ValueElement Value="HL70063" DisplayName="Relationship " CodeSystem="HL70396" /><ValueElement Value="HL70192" DisplayName="Visit ID Type" CodeSystem="HL70396" /><ValueElement Value="FIPS5_2" DisplayName="FIPS 5-2 (State)" CodeSystem="HL70396" /><ValueElement Value="UB04FL35" DisplayName="Occurrence Span" CodeSystem="HL70396" /><ValueElement Value="E7" DisplayName="Euclides Lab equipment codes" CodeSystem="HL70396" /><ValueElement Value="ICDO3" DisplayName="International Classification of Disease for Oncology Third Edition" CodeSystem="HL70396" /><ValueElement Value="HSLOC" DisplayName="Healthcare Service Location" CodeSystem="HL70396" /><ValueElement Value="HL70568" DisplayName="Volume Units " CodeSystem="HL70396" /><ValueElement Value="HL70757" DisplayName="Status Respiration Minutes " CodeSystem="HL70396" /><ValueElement Value="HL70404" DisplayName="Language Proficiency " CodeSystem="HL70396" /><ValueElement Value="HL70201" DisplayName="Telecommunication Use Code " CodeSystem="HL70396" /><ValueElement Value="HL70056" DisplayName="DRG Grouper Review Code " CodeSystem="HL70396" /><ValueElement Value="HL70618" DisplayName="Protection Code " CodeSystem="HL70396" /><ValueElement Value="FDAUDI" DisplayName="FDA Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="CMSOMC" DisplayName="OCE Modifier Code" CodeSystem="HL70396" /><ValueElement Value="HL70078" DisplayName="Interpretation Codes " CodeSystem="HL70396" /><ValueElement Value="HHC" DisplayName="Home Health Care" CodeSystem="HL70396" /><ValueElement Value="HL70359" DisplayName="Diagnosis Priority " CodeSystem="HL70396" /><ValueElement Value="HL70363" DisplayName="Assigning Authority " CodeSystem="HL70396" /><ValueElement Value="HL70396" DisplayName="Coding System " CodeSystem="HL70396" /><ValueElement Value="HL70313" DisplayName="Policy Source " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2009" DisplayName="ICD 10 Germany v2009" CodeSystem="HL70396" /><ValueElement Value="OPS2012" DisplayName="OPS Germany v2012" CodeSystem="HL70396" /><ValueElement Value="HL70217" DisplayName="Visit Priority Code " CodeSystem="HL70396" /><ValueElement Value="MVX" DisplayName="CDC Vaccine Manufacturer Codes" CodeSystem="HL70396" /><ValueElement Value="HL70027" DisplayName="Priority " CodeSystem="HL70396" /><ValueElement Value="HL70249" DisplayName="Generic Product " CodeSystem="HL70396" /><ValueElement Value="NIP007" DisplayName="Vaccinated at location (facility)" CodeSystem="HL70396" /><ValueElement Value="HL70006" DisplayName="Religion " CodeSystem="HL70396" /><ValueElement Value="HL70909" DisplayName="Patient Results Release Categorization Scheme" CodeSystem="HL70396" /><ValueElement Value="HL70130" DisplayName="Visit User Code " CodeSystem="HL70396" /><ValueElement Value="HL70342" DisplayName="Military Recipient " CodeSystem="HL70396" /><ValueElement Value="HL70942" DisplayName="Equipment State Indicator Type Code" CodeSystem="HL70396" /><ValueElement Value="HL70174" DisplayName="Nature Of Service/Test/Observation " CodeSystem="HL70396" /><ValueElement Value="HL70191" DisplayName="Type Of Referenced Data " CodeSystem="HL70396" /><ValueElement Value="Chrom-Loc" DisplayName="Cytogenetic (chromosome) location" CodeSystem="HL70396" /><ValueElement Value="HL70555" DisplayName="Invoice Type " CodeSystem="HL70396" /><ValueElement Value="HL70406" DisplayName="Organization Unit Type " CodeSystem="HL70396" /><ValueElement Value="HL70290" DisplayName="Mime Base64 Encoding Characters" CodeSystem="HL70396" /><ValueElement Value="HL70141" DisplayName="Military Rank/Grade " CodeSystem="HL70396" /><ValueElement Value="HL70451" DisplayName="Substance Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70247" DisplayName="Status Of Evaluation " CodeSystem="HL70396" /><ValueElement Value="HL70540" DisplayName="Inactive Reason Code " CodeSystem="HL70396" /><ValueElement Value="HL70327" DisplayName="Job Code " CodeSystem="HL70396" /><ValueElement Value="HL70511" DisplayName="BP Observation Status Codes Interpretation " CodeSystem="HL70396" /><ValueElement Value="HL70373" DisplayName="Treatment" CodeSystem="HL70396" /><ValueElement Value="HL70530" DisplayName="Organization, Agency, Department " CodeSystem="HL70396" /><ValueElement Value="NIP008" DisplayName="Vaccine purchased with (Type of funding)" CodeSystem="HL70396" /><ValueElement Value="UMD" DisplayName="MDNS" CodeSystem="HL70396" /><ValueElement Value="HL70115" DisplayName="Servicing Facilities" CodeSystem="HL70396" /><ValueElement Value="HL70429" DisplayName="Production Class Code " CodeSystem="HL70396" /><ValueElement Value="UPIN" DisplayName="UPIN" CodeSystem="HL70396" /><ValueElement Value="CDCODH" DisplayName="Occupational Data for Health (ODH)" CodeSystem="HL70396" /><ValueElement Value="HL70016" DisplayName="Isolation" CodeSystem="HL70396" /><ValueElement Value="HL70238" DisplayName="Event Seriousness " CodeSystem="HL70396" /><ValueElement Value="HL70317" DisplayName="Annotations " CodeSystem="HL70396" /><ValueElement Value="HL70055" DisplayName="Diagnosis Related Group " CodeSystem="HL70396" /><ValueElement Value="HL70311" DisplayName="Job Status " CodeSystem="HL70396" /><ValueElement Value="HL74000" DisplayName="Name/Address Representation" CodeSystem="HL70396" /><ValueElement Value="HL70457" DisplayName="Overall Claim Disposition Code " CodeSystem="HL70396" /><ValueElement Value="HL70557" DisplayName="Payee Type " CodeSystem="HL70396" /><ValueElement Value="HL70153" DisplayName="Value Code " CodeSystem="HL70396" /><ValueElement Value="E6" DisplayName="Euclides Lab method codes" CodeSystem="HL70396" /><ValueElement Value="HL70499" DisplayName="Consent Bypass Reason " CodeSystem="HL70396" /><ValueElement Value="HL70734" DisplayName="Grouper Status " CodeSystem="HL70396" /><ValueElement Value="HL70834" DisplayName="Mime Types " CodeSystem="HL70396" /><ValueElement Value="HL70642" DisplayName="Reorder Theory Codes " CodeSystem="HL70396" /><ValueElement Value="IHELAW" DisplayName="IHE Laboratory Analytical Workflow (LAW) Profile Codes." CodeSystem="HL70396" /><ValueElement Value="HL70438" DisplayName="Allergy Clinical Status " CodeSystem="HL70396" /><ValueElement Value="CDCNHSN" DisplayName="CDC National Healthcare Safety Network Codes" CodeSystem="HL70396" /><ValueElement Value="HL70572" DisplayName="Provider Tax Status " CodeSystem="HL70396" /><ValueElement Value="HL70943" DisplayName="Transport Destination" CodeSystem="HL70396" /><ValueElement Value="GDRG2008" DisplayName="G-DRG German DRG Codes v2008" CodeSystem="HL70396" /><ValueElement Value="HL70018" DisplayName="Patient Type " CodeSystem="HL70396" /><ValueElement Value="HL70389" DisplayName="Analyte Repeat Status " CodeSystem="HL70396" /><ValueElement Value="OPS2013" DisplayName="OPS Germany v2013" CodeSystem="HL70396" /><ValueElement Value="CST" DisplayName="COSTART" CodeSystem="HL70396" /><ValueElement Value="HL70895" DisplayName="Present On Admission (POA) Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70811" DisplayName="Maintenance Type " CodeSystem="HL70396" /><ValueElement Value="HL70019" DisplayName="Anesthesia Code " CodeSystem="HL70396" /><ValueElement Value="HL70776" DisplayName="Item Status " CodeSystem="HL70396" /><ValueElement Value="HL70561" DisplayName="Product/Services Clarification Codes " CodeSystem="HL70396" /><ValueElement Value="HL70126" DisplayName="Quantity Limited Request " CodeSystem="HL70396" /><ValueElement Value="HL70494" DisplayName="Specimen Child Role " CodeSystem="HL70396" /><ValueElement Value="HL70469" DisplayName="Packaging Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70209" DisplayName="Relational Operator " CodeSystem="HL70396" /><ValueElement Value="HL70907" DisplayName="Shipment Confidentiality " CodeSystem="HL70396" /><ValueElement Value="HL70509" DisplayName="Indication For Use " CodeSystem="HL70396" /><ValueElement Value="UB04FL39" DisplayName="Value Code" CodeSystem="HL70396" /><ValueElement Value="HL70062" DisplayName="Event Reason " CodeSystem="HL70396" /><ValueElement Value="HL70322" DisplayName="Completion Status " CodeSystem="HL70396" /><ValueElement Value="UPC" DisplayName="Universal Product Code" CodeSystem="HL70396" /><ValueElement Value="C4" DisplayName="CPT-4" CodeSystem="HL70396" /><ValueElement Value="HL70165" DisplayName="Administration Method " CodeSystem="HL70396" /><ValueElement Value="DCL" DisplayName="DICOM Class Label" CodeSystem="HL70396" /><ValueElement Value="HB" DisplayName="HIBCC" CodeSystem="HL70396" /><ValueElement Value="CVX" DisplayName="CDC Vaccine Codes" CodeSystem="HL70396" /><ValueElement Value="HL70302" DisplayName="Point Of Care " CodeSystem="HL70396" /><ValueElement Value="HL70489" DisplayName="Risk Codes" CodeSystem="HL70396" /><ValueElement Value="COSMIC-Smpl" DisplayName="COSMIC – Simple variants" CodeSystem="HL70396" /><ValueElement Value="HL70038" DisplayName="Order Status " CodeSystem="HL70396" /><ValueElement Value="ensembl-G" DisplayName="Ensembl genomic reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70479" DisplayName="Pharmaceutical Substances " CodeSystem="HL70396" /><ValueElement Value="ACTRELSS" DisplayName="Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets. Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtere" CodeSystem="HL70396" /><ValueElement Value="HPC" DisplayName="CMS (formerly HCFA )Procedure Codes (HCPCS)" CodeSystem="HL70396" /><ValueElement Value="HL70075" DisplayName="Report Types" CodeSystem="HL70396" /><ValueElement Value="HL70381" DisplayName="Cap Type " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2011" DisplayName="German Alpha-ID v2011" CodeSystem="HL70396" /><ValueElement Value="HL70920" DisplayName="Preferred Specimen/Attribute Status " CodeSystem="HL70396" /><ValueElement Value="HCPT" DisplayName="Health Care Provider Taxonomy" CodeSystem="HL70396" /><ValueElement Value="HL70560" DisplayName="Quantity Units " CodeSystem="HL70396" /><ValueElement Value="HL70377" DisplayName="Other Environmental Factors " CodeSystem="HL70396" /><ValueElement Value="E" DisplayName="EUCLIDES" CodeSystem="HL70396" /><ValueElement Value="HL70287" DisplayName="Problem/Goal Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70362" DisplayName="Facility " CodeSystem="HL70396" /><ValueElement Value="HL70456" DisplayName="Revenue Code " CodeSystem="HL70396" /><ValueElement Value="HL70132" DisplayName="Transaction Code " CodeSystem="HL70396" /><ValueElement Value="HL70916" DisplayName="Relevant Clinical Information " CodeSystem="HL70396" /><ValueElement Value="EPASRS" DisplayName="EPA SRS" CodeSystem="HL70396" /><ValueElement Value="HL70426" DisplayName="Blood Product Code " CodeSystem="HL70396" /><ValueElement Value="HL70283" DisplayName="Referral Status " CodeSystem="HL70396" /><ValueElement Value="HL70034" DisplayName="Site Administered" CodeSystem="HL70396" /><ValueElement Value="HL70515" DisplayName="Transfusion Interrupted Reason " CodeSystem="HL70396" /><ValueElement Value="ITIS" DisplayName="Integrated Taxonomic Information System" CodeSystem="HL70396" /><ValueElement Value="HL70276" DisplayName="Appointment Reason Codes " CodeSystem="HL70396" /><ValueElement Value="OPS2007" DisplayName="OPS Germany v2007" CodeSystem="HL70396" /><ValueElement Value="LANGUAL" DisplayName="LanguaL" CodeSystem="HL70396" /><ValueElement Value="HL70032" DisplayName="Charge Price Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70127" DisplayName="Allergen Type" CodeSystem="HL70396" /><ValueElement Value="SNM" DisplayName="Systemized Nomenclature of Medicine (SNOMED)" CodeSystem="HL70396" /><ValueElement Value="HL70230" DisplayName="Procedure Functional Type " CodeSystem="HL70396" /><ValueElement Value="HL70179" DisplayName="Response Level " CodeSystem="HL70396" /><ValueElement Value="HL70024" DisplayName="Fee Schedule " CodeSystem="HL70396" /><ValueElement Value="HL70081" DisplayName="Notice Of Admission" CodeSystem="HL70396" /><ValueElement Value="HL70949" DisplayName="Order Control Code Reason" CodeSystem="HL70396" /><ValueElement Value="HL70553" DisplayName="Invoice Control Code " CodeSystem="HL70396" /><ValueElement Value="HL70338" DisplayName="Practitioner ID Number Type " CodeSystem="HL70396" /><ValueElement Value="HL70506" DisplayName="Service Request Relationship" CodeSystem="HL70396" /><ValueElement Value="HL70284" DisplayName="Referral Category " CodeSystem="HL70396" /><ValueElement Value="HL70147" DisplayName="Policy Type " CodeSystem="HL70396" /><ValueElement Value="GDRG2005" DisplayName="G-DRG German DRG Codes v 2005" CodeSystem="HL70396" /><ValueElement Value="HL70625" DisplayName="Item Status Codes " CodeSystem="HL70396" /><ValueElement Value="HL70914" DisplayName="Root Cause " CodeSystem="HL70396" /><ValueElement Value="GMDC2006" DisplayName="German Major v2006 Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="HL70523" DisplayName="Computation Type " CodeSystem="HL70396" /><ValueElement Value="HL70281" DisplayName="Referral Type " CodeSystem="HL70396" /><ValueElement Value="ISO639" DisplayName="ISO 639 Language" CodeSystem="HL70396" /><ValueElement Value="HL70931" DisplayName="Transport Temperature Units " CodeSystem="HL70396" /><ValueElement Value="PHINQUESTION" DisplayName="CDC Public Health Information Network (PHIN) Question" CodeSystem="HL70396" /><ValueElement Value="HL70116" DisplayName="Bed Status " CodeSystem="HL70396" /><ValueElement Value="HL70339" DisplayName="Advanced Beneficiary Notice Code " CodeSystem="HL70396" /><ValueElement Value="HL70427" DisplayName="Risk Management Incident Code " CodeSystem="HL70396" /><ValueElement Value="L" DisplayName="Local general code for a site-defined code system used for a specific set of trading partners. The 'zzz' SHALL be any printable ASCII string. Length of the name SHALL not exceed field width, and is subject to local implementation." CodeSystem="HL70396" /><ValueElement Value="HL70915" DisplayName="Process Control Code " CodeSystem="HL70396" /><ValueElement Value="HL70415" DisplayName="DRG Transfer Type " CodeSystem="HL70396" /><ValueElement Value="HL70868" DisplayName="Telecommunication Expiration Reason " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2012" DisplayName="German Alpha-ID v2013" CodeSystem="HL70396" /><ValueElement Value="GMDC2005" DisplayName="German Major Diagnostic Codes v2005" CodeSystem="HL70396" /><ValueElement Value="HGVS.p" DisplayName="HGVS-Protein syntax" CodeSystem="HL70396" /><ValueElement Value="HL70160" DisplayName="Tray Type " CodeSystem="HL70396" /><ValueElement Value="HL70003" DisplayName="Event Type " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2015" DisplayName="German Alpha-ID v2015" CodeSystem="HL70396" /><ValueElement Value="HL70966" DisplayName="Pricing Tier Level" CodeSystem="HL70396" /><ValueElement Value="O3012005" DisplayName="OPS Germany 2005" CodeSystem="HL70396" /><ValueElement Value="HL70366" DisplayName="Local/Remote Control State " CodeSystem="HL70396" /><ValueElement Value="HL70566" DisplayName="Blood Unit Type " CodeSystem="HL70396" /><ValueElement Value="NUBC" DisplayName="National Uniform Billing Committee Code" CodeSystem="HL70396" /><ValueElement Value="ISO+" DisplayName="ISO 2955.83 (units of measure) with HL7 extensions" CodeSystem="HL70396" /><ValueElement Value="HL70432" DisplayName="Admission Level Of Care Code " CodeSystem="HL70396" /><ValueElement Value="HL70170" DisplayName="Derived Specimen " CodeSystem="HL70396" /><ValueElement Value="HL70237" DisplayName="Event Qualification " CodeSystem="HL70396" /><ValueElement Value="HL70467" DisplayName="Modifier Edit Code " CodeSystem="HL70396" /><ValueElement Value="HL70218" DisplayName="Patient Charge Adjustment " CodeSystem="HL70396" /><ValueElement Value="HL70088" DisplayName="Procedure Code " CodeSystem="HL70396" /><ValueElement Value="HL70444" DisplayName="Name Assembly Order " CodeSystem="HL70396" /><ValueElement Value="Medgen-Dis" DisplayName="NCBI MedGen disease subset" CodeSystem="HL70396" /><ValueElement Value="HL70565" DisplayName="Provider Adjustment Reason Code " CodeSystem="HL70396" /><ValueElement Value="HL70227" DisplayName="Manufacturers Of Vaccines " CodeSystem="HL70396" /><ValueElement Value="MEDC" DisplayName="Medical Economics Drug Codes" CodeSystem="HL70396" /><ValueElement Value="HL70505" DisplayName="Cyclic Entry/Exit Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70945" DisplayName="Auto-Dilution Type" CodeSystem="HL70396" /><ValueElement Value="HL70092" DisplayName="Re-Admission Indicator " CodeSystem="HL70396" /><ValueElement Value="NIP004" DisplayName="Vaccination - Contraindications, Precautions, and Immunities" CodeSystem="HL70396" /><ValueElement Value="HL70452" DisplayName="Health Care Provider Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70463" DisplayName="Inventory Number " CodeSystem="HL70396" /><ValueElement Value="HL70173" DisplayName="Coordination Of Benefits " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2009" DisplayName="German Alpha-ID v2009" CodeSystem="HL70396" /><ValueElement Value="HL70157" DisplayName="Which Date/Time Status Qualifier" CodeSystem="HL70396" /><ValueElement Value="HL70309" DisplayName="Coverage Type " CodeSystem="HL70396" /><ValueElement Value="HL70011" DisplayName="Charging System" CodeSystem="HL70396" /><ValueElement Value="HL70460" DisplayName="Denial Or Rejection Code " CodeSystem="HL70396" /><ValueElement Value="HL70190" DisplayName="Address Type " CodeSystem="HL70396" /><ValueElement Value="HL70398" DisplayName="Continuation Style Code " CodeSystem="HL70396" /><ValueElement Value="HL70378" DisplayName="Carrier Type " CodeSystem="HL70396" /><ValueElement Value="HL70865" DisplayName="Referral Documentation Completion Status " CodeSystem="HL70396" /><ValueElement Value="HL70269" DisplayName="Charge On Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70717" DisplayName="Access Restriction Value " CodeSystem="HL70396" /><ValueElement Value="ICDO2" DisplayName="International Classification of Disease for Oncology Second Edition" CodeSystem="HL70396" /><ValueElement Value="HL70104" DisplayName="Version ID" CodeSystem="HL70396" /><ValueElement Value="HL70634" DisplayName="Item Importance Codes " CodeSystem="HL70396" /><ValueElement Value="refSeq-T" DisplayName="NCBI-transcript reference sequences (RefSeq)" CodeSystem="HL70396" /><ValueElement Value="HL70960" DisplayName="Data Absent Reason" CodeSystem="HL70396" /><ValueElement Value="HL70543" DisplayName="Specimen Collection Site " CodeSystem="HL70396" /><ValueElement Value="HL70102" DisplayName="Delayed Acknowledgment Type" CodeSystem="HL70396" /><ValueElement Value="HL70965" DisplayName="Contract Type" CodeSystem="HL70396" /><ValueElement Value="HL70435" DisplayName="Advance Directive Code " CodeSystem="HL70396" /><ValueElement Value="HL70512" DisplayName="Commercial Product " CodeSystem="HL70396" /><ValueElement Value="HL70436" DisplayName="Sensitivity To Causative Agent Code " CodeSystem="HL70396" /><ValueElement Value="UB04FL14" DisplayName="Priority (Type) of Visit" CodeSystem="HL70396" /><ValueElement Value="HL70297" DisplayName="CN ID Source " CodeSystem="HL70396" /><ValueElement Value="HL70470" DisplayName="Reimbursement Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70728" DisplayName="CCL Value " CodeSystem="HL70396" /><ValueElement Value="HL70818" DisplayName="Package " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2007" DisplayName="ICD 10 Germany v2007" CodeSystem="HL70396" /><ValueElement Value="HL70129" DisplayName="Accommodation Code " CodeSystem="HL70396" /><ValueElement Value="HL70458" DisplayName="OCE Edit Code " CodeSystem="HL70396" /><ValueElement Value="HL70181" DisplayName="MFN Record-Level Error Return " CodeSystem="HL70396" /><ValueElement Value="HL70267" DisplayName="Days Of The Week " CodeSystem="HL70396" /><ValueElement Value="NIP001" DisplayName="Source of Information (Immunization)" CodeSystem="HL70396" /><ValueElement Value="CDCOBS" DisplayName="CDC BioSense RT observations (Census) - CDC" CodeSystem="HL70396" /><ValueElement Value="NIP010" DisplayName="VAERS Report type" CodeSystem="HL70396" /><ValueElement Value="HL70208" DisplayName="Query Response Status " CodeSystem="HL70396" /><ValueElement Value="HL70205" DisplayName="Price Type " CodeSystem="HL70396" /><ValueElement Value="I9" DisplayName="ICD9" CodeSystem="HL70396" /><ValueElement Value="HL70380" DisplayName="Separator Type " CodeSystem="HL70396" /><ValueElement Value="HL70569" DisplayName="Adjustment Action " CodeSystem="HL70396" /><ValueElement Value="HL70275" DisplayName="Document Storage Status " CodeSystem="HL70396" /><ValueElement Value="HL70093" DisplayName="Release Information " CodeSystem="HL70396" /><ValueElement Value="HL70176" DisplayName="Master File Application Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70938" DisplayName="Collection Event/Process Step Limit " CodeSystem="HL70396" /><ValueElement Value="ICDO" DisplayName="International Classification of Diseases for Oncology" CodeSystem="HL70396" /><ValueElement Value="HL70017" DisplayName="Transaction Type " CodeSystem="HL70396" /><ValueElement Value="HL70461" DisplayName="License Number " CodeSystem="HL70396" /><ValueElement Value="HL70118" DisplayName="Major Diagnostic Category " CodeSystem="HL70396" /><ValueElement Value="HL70079" DisplayName="Location" CodeSystem="HL70396" /><ValueElement Value="HL70367" DisplayName="Alert Level " CodeSystem="HL70396" /><ValueElement Value="HL70344" DisplayName="Patient’S Relationship To Insured " CodeSystem="HL70396" /><ValueElement Value="HL70022" DisplayName="Billing Status " CodeSystem="HL70396" /><ValueElement Value="HL70328" DisplayName="Employee Classification " CodeSystem="HL70396" /><ValueElement Value="HL70335" DisplayName="Repeat Pattern " CodeSystem="HL70396" /><ValueElement Value="HL70485" DisplayName="Extended Priority Codes " CodeSystem="HL70396" /><ValueElement Value="HL70083" DisplayName="Outlier Type " CodeSystem="HL70396" /><ValueElement Value="AMTv2" DisplayName="Australian Medicines Terminology (v2)" CodeSystem="HL70396" /><ValueElement Value="HL70969" DisplayName="Container Common Name" CodeSystem="HL70396" /><ValueElement Value="HL70004" DisplayName="Patient Class " CodeSystem="HL70396" /><ValueElement Value="HL70332" DisplayName="Source Type " CodeSystem="HL70396" /><ValueElement Value="HL70059" DisplayName="Consent Code " CodeSystem="HL70396" /><ValueElement Value="MCD" DisplayName="Medicaid" CodeSystem="HL70396" /><ValueElement Value="HL70939" DisplayName="Communication Location " CodeSystem="HL70396" /><ValueElement Value="HL70185" DisplayName="Preferred Method Of Contact " CodeSystem="HL70396" /><ValueElement Value="HL70539" DisplayName="Cost Center Code " CodeSystem="HL70396" /><ValueElement Value="ICCUDI" DisplayName="ICCBBA Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70925" DisplayName="Phlebotomy Issue " CodeSystem="HL70396" /><ValueElement Value="HL70951" DisplayName="Reason For Study" CodeSystem="HL70396" /><ValueElement Value="HL70368" DisplayName="Remote Control Command " CodeSystem="HL70396" /><ValueElement Value="HL70259" DisplayName="Modality " CodeSystem="HL70396" /><ValueElement Value="HL70180" DisplayName="Record-Level Event Code " CodeSystem="HL70396" /><ValueElement Value="HL70087" DisplayName="Pre-Admit Test Indicator " CodeSystem="HL70396" /><ValueElement Value="NDFRT" DisplayName="NDF-RT (Drug Classification)" CodeSystem="HL70396" /><ValueElement Value="HL70069" DisplayName="Hospital Service " CodeSystem="HL70396" /><ValueElement Value="HL70562" DisplayName="Processing Consideration Codes " CodeSystem="HL70396" /><ValueElement Value="HL70156" DisplayName="Which Date/Time Qualifier" CodeSystem="HL70396" /><ValueElement Value="HL70348" DisplayName="Special Program Indicator" CodeSystem="HL70396" /><ValueElement Value="HL70395" DisplayName="Modify Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70260" DisplayName="Patient Location Type " CodeSystem="HL70396" /><ValueElement Value="HL70448" DisplayName="Name Context " CodeSystem="HL70396" /><ValueElement Value="HL70933" DisplayName="Intended Procedure Type " CodeSystem="HL70396" /><ValueElement Value="HL70809" DisplayName="Maintenance Cycle " CodeSystem="HL70396" /><ValueElement Value="HL70806" DisplayName="Sterilization Type " CodeSystem="HL70396" /><ValueElement Value="HL70288" DisplayName="Census Tract " CodeSystem="HL70396" /><ValueElement Value="HL70917" DisplayName="Bolus Type " CodeSystem="HL70396" /><ValueElement Value="HL70261" DisplayName="Location Equipment " CodeSystem="HL70396" /><ValueElement Value="HL70280" DisplayName="Referral Priority " CodeSystem="HL70396" /><ValueElement Value="HL70950" DisplayName="Order Status Modifier" CodeSystem="HL70396" /><ValueElement Value="HIBUDI" DisplayName="HIBCC Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70761" DisplayName="DRG Procedure Determination Status " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2013" DisplayName="German Alpha-ID v2013" CodeSystem="HL70396" /><ValueElement Value="HL70125" DisplayName="Value Type " CodeSystem="HL70396" /><ValueElement Value="HL70084" DisplayName="Performed By " CodeSystem="HL70396" /><ValueElement Value="HL70236" DisplayName="Event Reported To " CodeSystem="HL70396" /><ValueElement Value="HL70894" DisplayName="Side Of Body " CodeSystem="HL70396" /><ValueElement Value="HL70193" DisplayName="Amount Class " CodeSystem="HL70396" /><ValueElement Value="ENTITYCODE" DisplayName="Entity Code" CodeSystem="HL70396" /><ValueElement Value="HL70286" DisplayName="Provider Role " CodeSystem="HL70396" /><ValueElement Value="HL70402" DisplayName="School Type " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2014" DisplayName="German Alpha-ID v2014" CodeSystem="HL70396" /><ValueElement Value="RxT-Ingrd" DisplayName="RxTerms-Ingredients Subset" CodeSystem="HL70396" /><ValueElement Value="CD2" DisplayName="CDT-2 Codes" CodeSystem="HL70396" /><ValueElement Value="HL70405" DisplayName="Organization Unit " CodeSystem="HL70396" /><ValueElement Value="HL70440" DisplayName="Data Types " CodeSystem="HL70396" /><ValueElement Value="HL70904" DisplayName="Security Check Scheme " CodeSystem="HL70396" /><ValueElement Value="HL70541" DisplayName="Specimen Type Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70725" DisplayName="Mood Codes " CodeSystem="HL70396" /><ValueElement Value="HL70046" DisplayName="Credit Rating " CodeSystem="HL70396" /><ValueElement Value="NCPDPnnnnsss" DisplayName="NCPDP code list for data element nnnn [as used in segment sss]" CodeSystem="HL70396" CodePattern="NCPDP.+" /><ValueElement Value="HL70346" DisplayName="Certification Agency " CodeSystem="HL70396" /><ValueElement Value="HL70096" DisplayName="Financial Transaction Code" CodeSystem="HL70396" /><ValueElement Value="HL70948" DisplayName="Relationship Type" CodeSystem="HL70396" /><ValueElement Value="HL70240" DisplayName="Event Consequence " CodeSystem="HL70396" /><ValueElement Value="HL70161" DisplayName="Allow Substitution " CodeSystem="HL70396" /><ValueElement Value="HL70370" DisplayName="Container Status " CodeSystem="HL70396" /><ValueElement Value="IBTnnnn" DisplayName="ISBT 128 codes where nnnn specifies a specific table within ISBT 128." CodeSystem="HL70396" CodePattern="IBT.+" /><ValueElement Value="PLT" DisplayName="CDC PHLIP Lab test codes, where LOINC concept is too broad or not yet available, especially as needed for ordering and or lab to lab reporting )" CodeSystem="HL70396" /><ValueElement Value="CE" DisplayName="CEN ECG diagnostic codes" CodeSystem="HL70396" /><ValueElement Value="MEDR" DisplayName="Medical Dictionary for Drug Regulatory Affairs (MEDDRA)" CodeSystem="HL70396" /><ValueElement Value="HL70526" DisplayName="Privilege Class " CodeSystem="HL70396" /><ValueElement Value="DCM" DisplayName="DICOM Controlled Terminology" CodeSystem="HL70396" /><ValueElement Value="HL70492" DisplayName="Specimen Appropriateness " CodeSystem="HL70396" /><ValueElement Value="MEDIATYPE" DisplayName="MIME Media Type IANA" CodeSystem="HL70396" /><ValueElement Value="HL70233" DisplayName="Non-Concur Code/Description " CodeSystem="HL70396" /><ValueElement Value="HL70449" DisplayName="PSRO/UR Approval Indicator" CodeSystem="HL70396" /><ValueElement Value="HL70659" DisplayName="Lot Control " CodeSystem="HL70396" /><ValueElement Value="W1" DisplayName="WHO record # drug codes (6 digit)" CodeSystem="HL70396" /><ValueElement Value="FDK" DisplayName="FDA K10" CodeSystem="HL70396" /><ValueElement Value="HL70559" DisplayName="Product/Service Line Item Status " CodeSystem="HL70396" /><ValueElement Value="HL70122" DisplayName="Charge Type " CodeSystem="HL70396" /><ValueElement Value="HL70477" DisplayName="Controlled Substance Schedule " CodeSystem="HL70396" /><ValueElement Value="SIC" DisplayName="Industry (SIC)" CodeSystem="HL70396" /><ValueElement Value="HL70959" DisplayName="Work Classification ODH" CodeSystem="HL70396" /><ValueElement Value="HL70567" DisplayName="Weight Units " CodeSystem="HL70396" /><ValueElement Value="HL70296" DisplayName="Primary Language " CodeSystem="HL70396" /><ValueElement Value="E5" DisplayName="Euclides quantity codes" CodeSystem="HL70396" /><ValueElement Value="DQL" DisplayName="DICOM Query Label" CodeSystem="HL70396" /><ValueElement Value="GS1UDI" DisplayName="GS1 Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70414" DisplayName="Units Of Time " CodeSystem="HL70396" /><ValueElement Value="LN" DisplayName="Logical Observation Identifier Names and Codes (LOINC®)" CodeSystem="HL70396" /><ValueElement Value="HL70482" DisplayName="Order Type " CodeSystem="HL70396" /><ValueElement Value="ANS+" DisplayName="HL7 set of units of measure" CodeSystem="HL70396" /><ValueElement Value="HL70351" DisplayName="Occurrence Span " CodeSystem="HL70396" /><ValueElement Value="HL70496" DisplayName="Consent Type " CodeSystem="HL70396" /><ValueElement Value="HL70135" DisplayName="Assignment Of Benefits " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2012" DisplayName="ICD 10 Germany v2012" CodeSystem="HL70396" /><ValueElement Value="HL70548" DisplayName="Signatory’S Relationship To Subject " CodeSystem="HL70396" /><ValueElement Value="HL70204" DisplayName="Organizational Name Type " CodeSystem="HL70396" /><ValueElement Value="UB04FL31" DisplayName="Occurrence Code" CodeSystem="HL70396" /><ValueElement Value="USPS" DisplayName="United States Postal Service" CodeSystem="HL70396" /><ValueElement Value="HL70086" DisplayName="Plan ID " CodeSystem="HL70396" /><ValueElement Value="HL70393" DisplayName="Match Algorithms " CodeSystem="HL70396" /><ValueElement Value="UB04FL17" DisplayName="Patient Discharge Status" CodeSystem="HL70396" /><ValueElement Value="HL70200" DisplayName="Name Type " CodeSystem="HL70396" /><ValueElement Value="HL70168" DisplayName="Processing Priority " CodeSystem="HL70396" /><ValueElement Value="HL70528" DisplayName="Event Related Period " CodeSystem="HL70396" /><ValueElement Value="HL70151" DisplayName="Second Opinion Status " CodeSystem="HL70396" /><ValueElement Value="HL70159" DisplayName="Diet Code Specification Type " CodeSystem="HL70396" /><ValueElement Value="ENTITYHDLG" DisplayName="Entity Handling Code" CodeSystem="HL70396" /><ValueElement Value="X12DEnnnn" DisplayName="ASC X12 Code List nnnn" CodeSystem="HL70396" CodePattern="X12DE.+" /><ValueElement Value="HL70336" DisplayName="Referral Reason " CodeSystem="HL70396" /><ValueElement Value="HL70326" DisplayName="Visit Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70273" DisplayName="Document Availability Status " CodeSystem="HL70396" /><ValueElement Value="HL70101" DisplayName="Display Level" CodeSystem="HL70396" /><ValueElement Value="HL70918" DisplayName="PCA Type " CodeSystem="HL70396" /><ValueElement Value="HL70923" DisplayName="Process Interruption " CodeSystem="HL70396" /><ValueElement Value="HL70934" DisplayName="Order Workflow Profile " CodeSystem="HL70396" /><ValueElement Value="HL70044" DisplayName="Contract Code " CodeSystem="HL70396" /><ValueElement Value="IUPC" DisplayName="IUPAC/IFCC Component Codes" CodeSystem="HL70396" /><ValueElement Value="HL70771" DisplayName="Resource Type Or Category " CodeSystem="HL70396" /><ValueElement Value="HL70434" DisplayName="Patient Condition Code " CodeSystem="HL70396" /><ValueElement Value="HL70445" DisplayName="Identity Reliability Code " CodeSystem="HL70396" /><ValueElement Value="HL70430" DisplayName="Mode Of Arrival Code " CodeSystem="HL70396" /><ValueElement Value="HL70502" DisplayName="Non-Subject Consenter Reason " CodeSystem="HL70396" /><ValueElement Value="HL70012" DisplayName="Stock Location" CodeSystem="HL70396" /><ValueElement Value="HL70050" DisplayName="Accident Code " CodeSystem="HL70396" /><ValueElement Value="HL70213" DisplayName="Purge Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70345" DisplayName="Appeal Reason " CodeSystem="HL70396" /><ValueElement Value="HL70277" DisplayName="Appointment Type Codes " CodeSystem="HL70396" /><ValueElement Value="MDC" DisplayName="Medical Device Communication" CodeSystem="HL70396" /><ValueElement Value="HL70263" DisplayName="Level Of Care " CodeSystem="HL70396" /><ValueElement Value="ACTCODE" DisplayName="Table of HL7 Version 3 ActCode values" CodeSystem="HL70396" /><ValueElement Value="RXNORM" DisplayName="RxNorm" CodeSystem="HL70396" /><ValueElement Value="HL70061" DisplayName="Check Digit Scheme " CodeSystem="HL70396" /><ValueElement Value="CDCM" DisplayName="CDC Methods/Instruments Codes" CodeSystem="HL70396" /><ValueElement Value="HL70347" DisplayName="State/Province " CodeSystem="HL70396" /><ValueElement Value="HL70544" DisplayName="Container Condition " CodeSystem="HL70396" /><ValueElement Value="HL70503" DisplayName="Sequence/Results Flag " CodeSystem="HL70396" /><ValueElement Value="HL70399" DisplayName="Country Code" CodeSystem="HL70396" /><ValueElement Value="W2" DisplayName="WHO record # drug codes (8 digit)" CodeSystem="HL70396" /><ValueElement Value="ICD10AM" DisplayName="ICD-10 Australian modification" CodeSystem="HL70396" /><ValueElement Value="HL70940" DisplayName="Limitation Type Codes " CodeSystem="HL70396" /><ValueElement Value="HL70930" DisplayName="Volume Units " CodeSystem="HL70396" /><ValueElement Value="HL70349" DisplayName="PSRO/UR Approval Indicator" CodeSystem="HL70396" /><ValueElement Value="X12Dennnn" DisplayName="ASC X12 Code List nnnn" CodeSystem="HL70396" CodePattern="X12De.+" /><ValueElement Value="HL70143" DisplayName="Non-Covered Insurance Code " CodeSystem="HL70396" /><ValueElement Value="HL70731" DisplayName="DRG Diagnosis Determination Status " CodeSystem="HL70396" /><ValueElement Value="HL70264" DisplayName="Location Department " CodeSystem="HL70396" /><ValueElement Value="MGPI" DisplayName="Medispan GPI" CodeSystem="HL70396" /><ValueElement Value="HL70099" DisplayName="VIP Indicator " CodeSystem="HL70396" /><ValueElement Value="ISO3166_1" DisplayName="ISO 3166-1 Country Codes" CodeSystem="HL70396" /><ValueElement Value="ISO3166_2" DisplayName="ISO 3166-2 Country subdivisions" CodeSystem="HL70396" /><ValueElement Value="HL70409" DisplayName="Application Change Type " CodeSystem="HL70396" /><ValueElement Value="HL70073" DisplayName="Interest Rate Code " CodeSystem="HL70396" /><ValueElement Value="HL70871" DisplayName="Supply Risk Codes " CodeSystem="HL70396" /><ValueElement Value="HL70413" DisplayName="Consent Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70919" DisplayName="Exclusive Test " CodeSystem="HL70396" /><ValueElement Value="HL70105" DisplayName="Source Of Comment " CodeSystem="HL70396" /><ValueElement Value="HL70158" DisplayName="Date/Time Selection Qualifier" CodeSystem="HL70396" /><ValueElement Value="HL70454" DisplayName="Health Care Provider Area Of Specialization " CodeSystem="HL70396" /><ValueElement Value="HL70941" DisplayName="Procedure Code " CodeSystem="HL70396" /><ValueElement Value="HI" DisplayName="Health Outcomes" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2007" DisplayName="German Alpha-ID v2007" CodeSystem="HL70396" /><ValueElement Value="HL70162" DisplayName="Route Of Administration " CodeSystem="HL70396" /><ValueElement Value="HL70657" DisplayName="Device Type" CodeSystem="HL70396" /><ValueElement Value="HL70882" DisplayName="Medical Role Executing Physician " CodeSystem="HL70396" /><ValueElement Value="HL70142" DisplayName="Military Status " CodeSystem="HL70396" /><ValueElement Value="NIC" DisplayName="Nursing Interventions Classification" CodeSystem="HL70396" /><ValueElement Value="HL70466" DisplayName="Ambulatory Payment Classification Code " CodeSystem="HL70396" /><ValueElement Value="O301" DisplayName="German Procedure Codes" CodeSystem="HL70396" /><ValueElement Value="HL70312" DisplayName="Policy Scope " CodeSystem="HL70396" /><ValueElement Value="MCR" DisplayName="Medicare" CodeSystem="HL70396" /><ValueElement Value="UB04FL42" DisplayName="Revenue Code" CodeSystem="HL70396" /><ValueElement Value="CDCPHINVS" DisplayName="CDC PHIN Vocabulary Coding System" CodeSystem="HL70396" /><ValueElement Value="NDC" DisplayName="National drug codes" CodeSystem="HL70396" /><ValueElement Value="NDA" DisplayName="NANDA" CodeSystem="HL70396" /><ValueElement Value="HL70100" DisplayName="Invocation Event " CodeSystem="HL70396" /><ValueElement Value="HL70433" DisplayName="Precaution Code " CodeSystem="HL70396" /><ValueElement Value="HL70880" DisplayName="Product/Service Code Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70431" DisplayName="Recreational Drug Use Code " CodeSystem="HL70396" /><ValueElement Value="CCC" DisplayName="Clinical Care Classification system" CodeSystem="HL70396" /><ValueElement Value="HL70128" DisplayName="Allergy Severity " CodeSystem="HL70396" /><ValueElement Value="HL70243" DisplayName="Identity May Be Divulged " CodeSystem="HL70396" /><ValueElement Value="HL70271" DisplayName="Document Completion Status " CodeSystem="HL70396" /><ValueElement Value="HL70558" DisplayName="Payee Relationship To Invoice " CodeSystem="HL70396" /><ValueElement Value="IUPP" DisplayName="IUPAC/IFCC Property Codes" CodeSystem="HL70396" /><ValueElement Value="HL70490" DisplayName="Specimen Reject Reason " CodeSystem="HL70396" /><ValueElement Value="HL70401" DisplayName="Government Reimbursement Program " CodeSystem="HL70396" /><ValueElement Value="HL70364" DisplayName="Comment Type " CodeSystem="HL70396" /><ValueElement Value="HL70119" DisplayName="Order Control Codes " CodeSystem="HL70396" /><ValueElement Value="HL70651" DisplayName="Labor Calculation Type " CodeSystem="HL70396" /><ValueElement Value="HL70245" DisplayName="Product Problem " CodeSystem="HL70396" /><ValueElement Value="HL70510" DisplayName="Blood Product Dispense Status " CodeSystem="HL70396" /><ValueElement Value="NPI" DisplayName="National Provider Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70564" DisplayName="Adjustment Category Code " CodeSystem="HL70396" /><ValueElement Value="SOC" DisplayName="Occupation (SOC 2000)" CodeSystem="HL70396" /><ValueElement Value="FDDC" DisplayName="First DataBank Drug Codes" CodeSystem="HL70396" /><ValueElement Value="HL70009" DisplayName="Ambulatory Status " CodeSystem="HL70396" /><ValueElement Value="OPS2014" DisplayName="OPS Germany v2014" CodeSystem="HL70396" /><ValueElement Value="ISO" DisplayName="ISO 2955.83 (units of measure) with HL7 extensions" CodeSystem="HL70396" /><ValueElement Value="HL70471" DisplayName="Query Name " CodeSystem="HL70396" /><ValueElement Value="HL70924" DisplayName="Cumulative Dosage Limit UoM " CodeSystem="HL70396" /><ValueElement Value="HL70316" DisplayName="Organ Donor Code " CodeSystem="HL70396" /><ValueElement Value="HL70175" DisplayName="Master File Identifier Code " CodeSystem="HL70396" /><ValueElement Value="HL70498" DisplayName="Consent Status " CodeSystem="HL70396" /><ValueElement Value="HL70355" DisplayName="Primary Key Value Type " CodeSystem="HL70396" /><ValueElement Value="HL70423" DisplayName="Case Category Code " CodeSystem="HL70396" /><ValueElement Value="HL70094" DisplayName="Report Of Eligibility" CodeSystem="HL70396" /><ValueElement Value="ICSD" DisplayName="International Classification of Sleep Disorders" CodeSystem="HL70396" /><ValueElement Value="LB" DisplayName="Local billing code" CodeSystem="HL70396" /><ValueElement Value="HL70881" DisplayName="Role Executing Physician " CodeSystem="HL70396" /><ValueElement Value="PHDSCSOPT" DisplayName="Source of Payment Typology" CodeSystem="HL70396" /><ValueElement Value="99zzz" DisplayName="Local general code for a site-defined code system used for a specific set of trading partners. The 'zzz' SHALL be any printable ASCII string. Length of the name SHALL not exceed field width, and is subject to local implementation." CodeSystem="HL70396" CodePattern="99.+" /><ValueElement Value="HL70493" DisplayName="Specimen Condition " CodeSystem="HL70396" /><ValueElement Value="HL70379" DisplayName="Tray Type " CodeSystem="HL70396" /><ValueElement Value="HL70719" DisplayName="Access Restriction Reason" CodeSystem="HL70396" /><ValueElement Value="HL70164" DisplayName="Administration Device " CodeSystem="HL70396" /><ValueElement Value="HL70521" DisplayName="Override Code " CodeSystem="HL70396" /><ValueElement Value="OPS2016" DisplayName="OPS Germany v2016" CodeSystem="HL70396" /><ValueElement Value="HL70936" DisplayName="Observation Type " CodeSystem="HL70396" /><ValueElement Value="HL70239" DisplayName="Event Expected " CodeSystem="HL70396" /><ValueElement Value="HL70763" DisplayName="DRG Procedure Relevance " CodeSystem="HL70396" /><ValueElement Value="COSMIC-Strc" DisplayName="COSMIC-Structural variants" CodeSystem="HL70396" /><ValueElement Value="HL70476" DisplayName="Medically Necessary Duplicate Procedure Reason " CodeSystem="HL70396" /><ValueElement Value="UB04FL15" DisplayName="Point of Origin" CodeSystem="HL70396" /><ValueElement Value="HL70337" DisplayName="Certification Status " CodeSystem="HL70396" /><ValueElement Value="HL70932" DisplayName="Donation Duration Units " CodeSystem="HL70396" /><ValueElement Value="IBT" DisplayName="ISBT" CodeSystem="HL70396" /><ValueElement Value="USGSGNIS" DisplayName="U.S. Board on Geographic Names (USGS - GNIS)" CodeSystem="HL70396" /><ValueElement Value="SNM3" DisplayName="SNOMED International" CodeSystem="HL70396" /><ValueElement Value="GMDC2009" DisplayName="German Major Diagnostic Codes v2009" CodeSystem="HL70396" /><ValueElement Value="HL70682" DisplayName="Device Status " CodeSystem="HL70396" /><ValueElement Value="LRG-RefSeq" DisplayName="Locus Reference Genomic (LRG)" CodeSystem="HL70396" /><ValueElement Value="HL70350" DisplayName="Occurrence Code " CodeSystem="HL70396" /><ValueElement Value="FDDX" DisplayName="First DataBank Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="dbVar-som" DisplayName="dbVar-Somatic" CodeSystem="HL70396" /><ValueElement Value="RefSeq-P" DisplayName="NCBI - protein reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70295" DisplayName="Handicap " CodeSystem="HL70396" /><ValueElement Value="HL70383" DisplayName="Substance Status " CodeSystem="HL70396" /><ValueElement Value="NND" DisplayName="Notifiable Event (Disease/Condition) Code List" CodeSystem="HL70396" /><ValueElement Value="HL70182" DisplayName="Staff Type " CodeSystem="HL70396" /><ValueElement Value="HL70545" DisplayName="Language Translated To" CodeSystem="HL70396" /><ValueElement Value="HL70080" DisplayName="Nature Of Abnormal Testing " CodeSystem="HL70396" /><ValueElement Value="HL70320" DisplayName="Item Natural Account Code " CodeSystem="HL70396" /><ValueElement Value="HL70184" DisplayName="Department " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2013" DisplayName="ICD 10 Germany v2013" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2016" DisplayName="German Alpha-ID v2016" CodeSystem="HL70396" /><ValueElement Value="HL70455" DisplayName="Type Of Bill Code " CodeSystem="HL70396" /><ValueElement Value="HL70971" DisplayName="Online Verification Result Error Code" CodeSystem="HL70396" /><ValueElement Value="HL70538" DisplayName="Institution Relationship Type " CodeSystem="HL70396" /><ValueElement Value="HL70057" DisplayName="Drug Code" CodeSystem="HL70396" /><ValueElement Value="HL70556" DisplayName="Benefit Group " CodeSystem="HL70396" /><ValueElement Value="HL70967" DisplayName="Container Form" CodeSystem="HL70396" /><ValueElement Value="SNT" DisplayName="SNOMED topology codes (anatomic sites)" CodeSystem="HL70396" /><ValueElement Value="HL70211" DisplayName="Alternate Character Sets " CodeSystem="HL70396" /><ValueElement Value="UCUM" DisplayName="UCUM code set for units of measure(from Regenstrief)" CodeSystem="HL70396" /><ValueElement Value="HL70879" DisplayName="Product/Service Code " CodeSystem="HL70396" /><ValueElement Value="HL70294" DisplayName="Time Selection Criteria Parameter Class Codes " CodeSystem="HL70396" /><ValueElement Value="HL70292" DisplayName="Vaccines Administered (Code = CVX) " CodeSystem="HL70396" /><ValueElement Value="HL70549" DisplayName="NDC Codes " CodeSystem="HL70396" /><ValueElement Value="HL70533" DisplayName="Application Error Code " CodeSystem="HL70396" /><ValueElement Value="HL70472" DisplayName="TQ Conjunction ID " CodeSystem="HL70396" /><ValueElement Value="HL70149" DisplayName="Day Type " CodeSystem="HL70396" /><ValueElement Value="HL70203" DisplayName="Identifier Type " CodeSystem="HL70396" /><ValueElement Value="HL70045" DisplayName="Courtesy Code " CodeSystem="HL70396" /><ValueElement Value="HL70910" DisplayName="Acquisition Modality " CodeSystem="HL70396" /><ValueElement Value="HL70547" DisplayName="Jurisdictional Breadth " CodeSystem="HL70396" /><ValueElement Value="HL70617" DisplayName="Address Usage " CodeSystem="HL70396" /><ValueElement Value="SDM" DisplayName="SNOMED- DICOM Microglossary" CodeSystem="HL70396" /><ValueElement Value="HL70382" DisplayName="Drug Interference " CodeSystem="HL70396" /><ValueElement Value="HL70424" DisplayName="Gestation Category Code " CodeSystem="HL70396" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70495" Name="Body Site Modifier" Description="Body Site Modifier" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="EXT" DisplayName="External" CodeSystem="HL70495" Usage="P" /><ValueElement Value="LAT" DisplayName="Lateral" CodeSystem="HL70495" Usage="P" /><ValueElement Value="BIL" DisplayName="Bilateral" CodeSystem="HL70495" Usage="P" /><ValueElement Value="LOW" DisplayName="Lower" CodeSystem="HL70495" Usage="P" /><ValueElement Value="MED" DisplayName="Medial" CodeSystem="HL70495" Usage="P" /><ValueElement Value="L" DisplayName="Left" CodeSystem="HL70495" Usage="P" /><ValueElement Value="PRO" DisplayName="Proximal" CodeSystem="HL70495" Usage="P" /><ValueElement Value="R" DisplayName="Right" CodeSystem="HL70495" Usage="P" /><ValueElement Value="DIS" DisplayName="Distal" CodeSystem="HL70495" Usage="P" /><ValueElement Value="POS" DisplayName="Posterior" CodeSystem="HL70495" Usage="P" /><ValueElement Value="UPP" DisplayName="Upper" CodeSystem="HL70495" Usage="P" /><ValueElement Value="LUQ" DisplayName="Quadrant, Left Upper" CodeSystem="HL70495" Usage="P" /><ValueElement Value="RLQ" DisplayName="Quadrant, Right Lower" CodeSystem="HL70495" Usage="P" /><ValueElement Value="RUQ" DisplayName="Quadrant, Right Upper" CodeSystem="HL70495" Usage="P" /><ValueElement Value="LLQ" DisplayName="Quadrant, Left Lower" CodeSystem="HL70495" Usage="P" /><ValueElement Value="ANT" DisplayName="Anterior" CodeSystem="HL70495" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70335" Name="Repeat pattern" Description="Repeat pattern" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="Q&lt;integer&gt;M" DisplayName="every &lt;integer&gt; minutes" CodeSystem="HL70335" Usage="P" /><ValueElement Value="V" DisplayName="Cibus Vespertinus (dinner)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="C" DisplayName="service is provided continuously between start time and stop time" CodeSystem="HL70335" Usage="P" /><ValueElement Value="M" DisplayName="Cibus Matutinus (breakfast)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="P" DisplayName="Post (after)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Meal Related Timings" DisplayName="&lt;timing&gt;C (&quot;cum&quot;)&lt;meal&gt;" CodeSystem="HL70335" Usage="P" /><ValueElement Value="A" DisplayName="Ante (before)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="PRNxxx" DisplayName="where xxx is some frequency code" CodeSystem="HL70335" Usage="P" /><ValueElement Value="TID" DisplayName="three times a day at institution-specified times" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;H" DisplayName="every &lt;integer&gt; hours" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QAM" DisplayName="in the morning at institution-specified time" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QSHIFT" DisplayName="during each of three eight-hour shifts at institution-specified times" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;L" DisplayName="every &lt;integer&gt; months (Lunar cycle)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="U &lt;spec&gt;" DisplayName="for future use, where &lt;spec&gt; is an interval specification as defined by the UNIX cron specification." CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;J&lt;day#&gt;" DisplayName="repeats on a particular day of the week," CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;W" DisplayName="every &lt;integer&gt; weeks" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QOD" DisplayName="every other day" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;D" DisplayName="every &lt;integer&gt; days" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Once" DisplayName="one time only." CodeSystem="HL70335" Usage="P" /><ValueElement Value="I" DisplayName="Inter" CodeSystem="HL70335" Usage="P" /><ValueElement Value="D" DisplayName="Cibus Diurnus (lunch)" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QPM" DisplayName="in the evening at institution-specified time" CodeSystem="HL70335" Usage="P" /><ValueElement Value="Q&lt;integer&gt;S" DisplayName="every &lt;integer&gt; seconds" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QID" DisplayName="four times a day at institution-specified times" CodeSystem="HL70335" Usage="P" /><ValueElement Value="xID" DisplayName="&quot;X&quot; times per day at institution-specified times, where X is a numeral 5 or greater." CodeSystem="HL70335" Usage="P" /><ValueElement Value="BID" DisplayName="twice a day at institution-specified times" CodeSystem="HL70335" Usage="P" /><ValueElement Value="PRN" DisplayName="given as needed" CodeSystem="HL70335" Usage="P" /><ValueElement Value="QHS" DisplayName="every day before the hour of sleep" CodeSystem="HL70335" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70125" Name="Value type" Description="Value type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="CWE" DisplayName="Coded Entry" CodeSystem="HL70125" Usage="P" /><ValueElement Value="NM" DisplayName="Numeric" CodeSystem="HL70125" Usage="P" /><ValueElement Value="XCN" DisplayName="Extended Composite Name And Number For Persons" CodeSystem="HL70125" Usage="P" /><ValueElement Value="CF" DisplayName="Coded Element With Formatted Values" CodeSystem="HL70125" Usage="P" /><ValueElement Value="XAD" DisplayName="Extended Address" CodeSystem="HL70125" Usage="P" /><ValueElement Value="RP" DisplayName="Reference Pointer" CodeSystem="HL70125" Usage="P" /><ValueElement Value="XPN" DisplayName="Extended Person Name" CodeSystem="HL70125" Usage="P" /><ValueElement Value="TM" DisplayName="Time" CodeSystem="HL70125" Usage="P" /><ValueElement Value="CX" DisplayName="Extended Composite ID With Check Digit" CodeSystem="HL70125" Usage="P" /><ValueElement Value="FT" DisplayName="Formatted Text (Display)" CodeSystem="HL70125" Usage="P" /><ValueElement Value="XON" DisplayName="Extended Composite Name And Number For Organizations" CodeSystem="HL70125" Usage="P" /><ValueElement Value="XTN" DisplayName="Extended Telecommunications Number" CodeSystem="HL70125" Usage="P" /><ValueElement Value="TX" DisplayName="Text Data (Display)" CodeSystem="HL70125" Usage="P" /><ValueElement Value="ED" DisplayName="Encapsulated Data" CodeSystem="HL70125" Usage="P" /><ValueElement Value="CP" DisplayName="Composite Price" CodeSystem="HL70125" Usage="P" /><ValueElement Value="ST" DisplayName="String Data." CodeSystem="HL70125" Usage="P" /><ValueElement Value="SN" DisplayName="Structured Numeric" CodeSystem="HL70125" Usage="P" /><ValueElement Value="MO" DisplayName="Money" CodeSystem="HL70125" Usage="P" /><ValueElement Value="DTM" DisplayName="Time Stamp (Date &amp; Time)" CodeSystem="HL70125" Usage="P" /><ValueElement Value="AD" DisplayName="Address" CodeSystem="HL70125" Usage="P" /><ValueElement Value="DT" DisplayName="Date" CodeSystem="HL70125" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70306_2-9" Name="Location Status" Description="Location Status" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70306" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70333_2-5" Name="Driver's license issuing authority" Description="Driver's license issuing authority" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70155" Name="Accept/application acknowledgment conditions" Description="Accept/application acknowledgment conditions" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SU" DisplayName="Successful completion only" CodeSystem="HL70155" Usage="P" /><ValueElement Value="NE" DisplayName="Never" CodeSystem="HL70155" Usage="P" /><ValueElement Value="ER" DisplayName="Error/reject conditions only" CodeSystem="HL70155" Usage="P" /><ValueElement Value="AL" DisplayName="Always" CodeSystem="HL70155" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70202" Name="Telecommunication equipment type" Description="Telecommunication equipment type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="BP" DisplayName="Beeper" CodeSystem="HL70202" Usage="P" /><ValueElement Value="MD" DisplayName="Modem" CodeSystem="HL70202" Usage="P" /><ValueElement Value="Internet" DisplayName="Internet Address" CodeSystem="HL70202" Usage="P" /><ValueElement Value="X.400" DisplayName="X.400 email address" CodeSystem="HL70202" Usage="P" /><ValueElement Value="TDD" DisplayName="Telecommunications Device for the Deaf" CodeSystem="HL70202" Usage="P" /><ValueElement Value="TTY" DisplayName="Teletypewriter" CodeSystem="HL70202" Usage="P" /><ValueElement Value="PH" DisplayName="Telephone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="CP" DisplayName="Cellular or Mobile Phone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="FX" DisplayName="Fax" CodeSystem="HL70202" Usage="P" /><ValueElement Value="SAT" DisplayName="Satellite Phone" CodeSystem="HL70202" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70360" Name="Degree/license/certificate" Description="Degree/license/certificate" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="MBA" DisplayName="Master of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MS" DisplayName="Master of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PN" DisplayName="Advanced Practice Nurse" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CER" DisplayName="Certificate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AA" DisplayName="Associate of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHE" DisplayName="Doctor of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MME" DisplayName="Master of Mechanical Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNP" DisplayName="Certified Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DED" DisplayName="Doctor of Education" CodeSystem="HL70360" Usage="P" /><ValueElement Value="ABA" DisplayName="Associate of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNS" DisplayName="Certified Nurse Specialist" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BSN" DisplayName="Bachelor on Science - Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MD" DisplayName="Doctor of Medicine" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BE" DisplayName="Bachelor or Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MCE" DisplayName="Master of Civil Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MSL" DisplayName="Master of Science - Law" CodeSystem="HL70360" Usage="P" /><ValueElement Value="RPH" DisplayName="Registered Pharmacist" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BT" DisplayName="Bachelor of Theology" CodeSystem="HL70360" Usage="P" /><ValueElement Value="EMT" DisplayName="Emergency Medical Technician" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AE" DisplayName="Associate of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="FPNP" DisplayName="Family Practice Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="NG" DisplayName="Non-Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="SEC" DisplayName="Secretarial Certificate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DIP" DisplayName="Diploma" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHD" DisplayName="Doctor of Philosophy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CRN" DisplayName="Certified Registered Nurse" CodeSystem="HL70360" Usage="P" /><ValueElement Value="EMTP" DisplayName="Emergency Medical Technician - Paramedic" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BS" DisplayName="Bachelor of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BN" DisplayName="Bachelor of Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MT" DisplayName="Master of Theology" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MSN" DisplayName="Master of Science - Nursing" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CNM" DisplayName="Certified Nurse Midwife" CodeSystem="HL70360" Usage="P" /><ValueElement Value="JD" DisplayName="Juris Doctor" CodeSystem="HL70360" Usage="P" /><ValueElement Value="NP" DisplayName="Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BSL" DisplayName="Bachelor of Science - Law" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PHS" DisplayName="Doctor of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BFA" DisplayName="Bachelor of Fine Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BBA" DisplayName="Bachelor of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="BA" DisplayName="Bachelor of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="HS" DisplayName="High School Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="TS" DisplayName="Trade School Graduate" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CMA" DisplayName="Certified Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PharmD" DisplayName="Doctor of Pharmacy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DBA" DisplayName="Doctor of Business Administration" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CANP" DisplayName="Certified Adult Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="RMA" DisplayName="Registered Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AAS" DisplayName="Associate of Applied Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="PA" DisplayName="Physician Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MDI" DisplayName="Master of Divinity" CodeSystem="HL70360" Usage="P" /><ValueElement Value="CPNP" DisplayName="Certified Pediatric Nurse Practitioner" CodeSystem="HL70360" Usage="P" /><ValueElement Value="AS" DisplayName="Associate of Science" CodeSystem="HL70360" Usage="P" /><ValueElement Value="DO" DisplayName="Doctor of Osteopathy" CodeSystem="HL70360" Usage="P" /><ValueElement Value="ME" DisplayName="Master of Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MA" DisplayName="Master of Arts" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MDA" DisplayName="Medical Assistant" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MEE" DisplayName="Master of Electrical Engineering" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MED" DisplayName="Master of Education" CodeSystem="HL70360" Usage="P" /><ValueElement Value="MFA" DisplayName="Master of Fine Arts" CodeSystem="HL70360" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70465" Name="Name/address representation" Description="Name/address representation" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="P" DisplayName="Phonetic (i.e., ASCII, Katakana, Hiragana, etc.)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="A" DisplayName="Alphabetic (i.e., Default or some single-byte)" CodeSystem="HL70465" Usage="P" /><ValueElement Value="I" DisplayName="Ideographic (i.e., Kanji)" CodeSystem="HL70465" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70121" Name="Response flag" Description="Response flag" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="F" DisplayName="Same as D, plus confirmations explicitly" CodeSystem="HL70121" Usage="P" /><ValueElement Value="D" DisplayName="Same as R, also other associated segments" CodeSystem="HL70121" Usage="P" /><ValueElement Value="E" DisplayName="Report exceptions only" CodeSystem="HL70121" Usage="P" /><ValueElement Value="N" DisplayName="Only the MSA segment is returned" CodeSystem="HL70121" Usage="P" /><ValueElement Value="R" DisplayName="Same as E, also Replacement and Parent-Child" CodeSystem="HL70121" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70301_2-5" Name="Universal ID type" Description="Universal ID type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="x500" DisplayName="X500 directory Name" CodeSystem="HL70301" Usage="P" /><ValueElement Value="M" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="Random" DisplayName="Random" CodeSystem="HL70301" Usage="P" /><ValueElement Value="ISO" DisplayName="ISO Object Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="L" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="HCD" DisplayName="CEN Healthcare Coding Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="x400" DisplayName="X.400 MHS identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="DNS" DisplayName="Domain Name System" CodeSystem="HL70301" Usage="P" /><ValueElement Value="GUID" DisplayName="globally unique identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="URI" DisplayName="Uniform Resource Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="N" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="HL7" DisplayName="HL7 registration schemes" CodeSystem="HL70301" Usage="P" /><ValueElement Value="UUID" DisplayName="Universal Unique Identifier" CodeSystem="HL70301" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70189_2-5" Name="Ethnic Group" Description="Ethnic Group" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="H" DisplayName="Hispanic or Latino" CodeSystem="HL70189" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70189" Usage="P" /><ValueElement Value="N" DisplayName="Not Hispanic or Latino" CodeSystem="HL70189" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70725" Name="Mood Codes" Description="Mood Codes" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="INT" DisplayName="Intent" CodeSystem="HL70725" Usage="P" /><ValueElement Value="RQO" DisplayName="Request-Order" CodeSystem="HL70725" Usage="P" /><ValueElement Value="PRMS" DisplayName="Promise" CodeSystem="HL70725" Usage="P" /><ValueElement Value="EVN.CRT" DisplayName="Event Criterion" CodeSystem="HL70725" Usage="P" /><ValueElement Value="ARQ" DisplayName="Appointment Request" CodeSystem="HL70725" Usage="P" /><ValueElement Value="APT" DisplayName="Appointment" CodeSystem="HL70725" Usage="P" /><ValueElement Value="EVN" DisplayName="Event" CodeSystem="HL70725" Usage="P" /><ValueElement Value="EXP" DisplayName="Expectation" CodeSystem="HL70725" Usage="P" /><ValueElement Value="PRP" DisplayName="Proposal" CodeSystem="HL70725" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70301" Name="Universal ID type" Description="Universal ID type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="HL7" DisplayName="HL7 registration schemes" CodeSystem="HL70301" Usage="P" /><ValueElement Value="Random" DisplayName="Random" CodeSystem="HL70301" Usage="P" /><ValueElement Value="x500" DisplayName="X500 directory Name" CodeSystem="HL70301" Usage="P" /><ValueElement Value="DNS" DisplayName="Domain Name System" CodeSystem="HL70301" Usage="P" /><ValueElement Value="UUID" DisplayName="Universal Unique Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="GUID" DisplayName="globally unique identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="L" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="URI" DisplayName="Uniform Resource Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="N" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="HCD" DisplayName="CEN Healthcare Coding Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="x400" DisplayName="X.400 MHS identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="ISO" DisplayName="ISO Object Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="M" DisplayName="Local" CodeSystem="HL70301" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70003" Name="Event type" Description="Event type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A43" DisplayName="ADT/ACK - Move patient information - patient identifier list" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O25" DisplayName="RDE - Pharmacy/treatment refill authorization request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U04" DisplayName="SSR/ACK - specimen status request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O17" DisplayName="RAS - Pharmacy/treatment administration" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I12" DisplayName="REF/RRI - Patient referral" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O30" DisplayName="BRP - Blood product dispense status acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R04" DisplayName="ORF - Response to query; transmission of requested observation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S32" DisplayName="SMD/SMS - Request anti-microbial device cycle data" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S01" DisplayName="SRM/SRR - Request new appointment booking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC9" DisplayName="QRY - PC/ goal query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I04" DisplayName="RQD/RPI - Request for patient demographic data" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S19" DisplayName="SIU/ACK - Notification of modification of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I15" DisplayName="REF/RRI - Request patient referral status" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E30" DisplayName="Submit Health Document related to Authorization Request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S26" DisplayName="SIU/ACK Notification that patient did not show up for schedule appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A16" DisplayName="ADT/ACK -  Pending discharge" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P05" DisplayName="BAR/ACK - Update account" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A30" DisplayName="ADT/ACK -  Merge person information (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A42" DisplayName="ADT/ACK - Merge visit - visit number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I08" DisplayName="RQA/RPA - Request for treatment authorization information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O35" DisplayName="OML - Laboratory order for multiple orders related to a single container of a specimen" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q26" DisplayName="ROR - Pharmacy/treatment order response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q05" DisplayName="UDM/ACK - Unsolicited display update message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T09" DisplayName="MDM/ACK - Document replacement notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="J02" DisplayName="QSX/ACK - Cancel subscription/acknowledge message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E04" DisplayName="Re-Assess HealthCare Services Invoice Request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E13" DisplayName="Additional Information Response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCH" DisplayName="PPG - PC/ pathway (goal-oriented) update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q31" DisplayName="QBP Query Dispense history" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A52" DisplayName="ADT/ACK - Cancel leave of absence for a patient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="W01" DisplayName="ORU - Waveform result, unsolicited transmission of requested information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S34" DisplayName="SLN/ACK - Notification of sterilization lot" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A36" DisplayName="ADT/ACK -  Merge patient information - patient ID and account number (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S04" DisplayName="SRM/SRR - Request appointment cancellation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O18" DisplayName="RRA - Pharmacy/treatment administration acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S37" DisplayName="SCN/ACK - Notification of anti-microbial device cycle data" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A35" DisplayName="ADT/ACK -  Merge patient information - account number only (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K25" DisplayName="RSP - Personnel Information by Segment Response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A40" DisplayName="ADT/ACK - Merge patient - patient identifier list" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E03" DisplayName="HealthCare Services Invoice Status" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M15" DisplayName="MFN/MFK - Inventory item master file notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O31" DisplayName="BTS - Blood product transfusion/disposition" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A09" DisplayName="ADT/ACK -  Patient departing - tracking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A18" DisplayName="ADT/ACK -  Merge patient information (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A54" DisplayName="ADT/ACK - Change attending doctor" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A26" DisplayName="ADT/ACK -  Cancel pending transfer" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q02" DisplayName="QRY/QCK - Query sent for deferred response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q17" DisplayName="QVR - Query for previous events" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M13" DisplayName="MFN/MFK - Master file notification - general" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U05" DisplayName="INU/ACK  - Automated equipment inventory update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A49" DisplayName="ADT/ACK - Change patient account number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q24" DisplayName="QBP - Allocate identifiers" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A44" DisplayName="ADT/ACK - Move account information - patient account number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B05" DisplayName="PMU/ACK - Deactivate practicing person" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q22" DisplayName="QBP - Find candidates" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B02" DisplayName="PMU/ACK - Update personnel record" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M03" DisplayName="MFN/MFK - Master file - test/observation (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T07" DisplayName="MDM/ACK - Document edit notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I11" DisplayName="RQA/RPA - Request for cancellation of an authorization" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T08" DisplayName="MDM/ACK - Document edit notification and content" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C03" DisplayName="CRM - Correct/update registration information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R30" DisplayName="ORU - Unsolicited Point-Of-Care Observation Message Without Existing Order - Place An Order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K21" DisplayName="RSP - Get person demographics response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E15" DisplayName="Payment/Remittance Advice" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I03" DisplayName="RQI/RPR - Request/receipt of patient selection list" CodeSystem="HL70003" Usage="P" /><ValueElement Value="N01" DisplayName="NMQ/NMR - Application management query message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S07" DisplayName="SRM/SRR - Request addition of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A48" DisplayName="ADT/ACK - Change alternate patient ID (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCK" DisplayName="QRY - PC/ pathway (goal-oriented) query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S11" DisplayName="SRM/SRR - Request deletion of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A21" DisplayName="ADT/ACK -  Patient goes on a &quot;leave of absence&quot;" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C11" DisplayName="CSU - Patient completes a phase of the clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S08" DisplayName="SRM/SRR - Request modification of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A06" DisplayName="ADT/ACK -  Change an outpatient to an inpatient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U11" DisplayName="TCR/ACK - Automated equipment test code settings request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A15" DisplayName="ADT/ACK -  Pending transfer" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I10" DisplayName="RQA/RPA - Request for resubmission of an authorization" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q01" DisplayName="QRY/DSR - Query sent for immediate response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A17" DisplayName="ADT/ACK -  Swap patients" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I06" DisplayName="RQC/RCL - Request/receipt of clinical data listing" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCL" DisplayName="PPT - PC/ pathway (goal-oriented) query response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E31" DisplayName="Cancel Health Document related to Authorization Request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A38" DisplayName="ADT/ACK - Cancel pre-admit" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A46" DisplayName="ADT/ACK - Change patient ID (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A39" DisplayName="ADT/ACK - Merge person - patient ID (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="V04" DisplayName="VXU - Unsolicited vaccination record update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O36" DisplayName="ORL - Laboratory order response message to a single container of a specimen OML" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A13" DisplayName="ADT/ACK -  Cancel discharge/end visit" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T05" DisplayName="MDM/ACK - Document addendum notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C09" DisplayName="CSU - Automated time intervals for reporting, like monthly" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q13" DisplayName="QBP - Query by parameter requesting an  RTB - tabular response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCG" DisplayName="PPG - PC/ pathway (goal-oriented) add" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C10" DisplayName="CSU - Patient completes the clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q21" DisplayName="QBP - Get person demographics" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A02" DisplayName="ADT/ACK - Transfer a patient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M12" DisplayName="MFN/MFK - Master file notification message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q27" DisplayName="RAR - Pharmacy/treatment administration information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCF" DisplayName="PTR - PC/ pathway (problem-oriented) query response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M16" DisplayName="MFN/MFK - Master File Notification Inventory Item Enhanced" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC2" DisplayName="PPR - PC/ problem update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A28" DisplayName="ADT/ACK -  Add person information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K15" DisplayName="RDY - Display response in response to QBP^Q15" CodeSystem="HL70003" Usage="P" /><ValueElement Value="ROR" DisplayName="ROR - Pharmacy prescription order query response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I02" DisplayName="RQI/RPL - Request/receipt of patient selection display list" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P07" DisplayName="PEX - Unsolicited initial individual product experience report" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R22" DisplayName="OUL - Unsolicited Specimen Oriented Observation Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A10" DisplayName="ADT/ACK -  Patient arriving - tracking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A50" DisplayName="ADT/ACK - Change visit number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M04" DisplayName="MFN/MFK - Master files charge description" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S03" DisplayName="SRM/SRR - Request appointment modification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O27" DisplayName="OMB - Blood product order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T04" DisplayName="MDM/ACK - Document status change notification and content" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M01" DisplayName="MFN/MFK - Master file not otherwise specified (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T03" DisplayName="MDM/ACK - Document status change notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U08" DisplayName="EAR/ACK - Automated equipment response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K24" DisplayName="RSP - Allocate identifiers response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O16" DisplayName="RRG - Pharmacy/treatment give acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B04" DisplayName="PMU/ACK - Active practicing person" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC6" DisplayName="PGL - PC/ goal add" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O09" DisplayName="OMP - Pharmacy/treatment order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q28" DisplayName="RDR - Pharmacy/treatment dispense information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T02" DisplayName="MDM/ACK - Original document notification and content" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q03" DisplayName="DSR/ACK - Deferred response to a query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCB" DisplayName="PPP - PC/ pathway (problem-oriented) add" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O38" DisplayName="OPR - Population/Location-Based Laboratory Order Acknowledgment Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC4" DisplayName="QRY - PC/ problem query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A33" DisplayName="ADT/ACK -  Cancel patient departing - tracking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A19" DisplayName="QRY/ADR -  Patient query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S16" DisplayName="SIU/ACK - Notification of appointment discontinuation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A60" DisplayName="ADT/ACK - Update allergy information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O37" DisplayName="OPL - Population/Location-Based Laboratory Order Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P12" DisplayName="BAR/ACK - Update Diagnosis/Procedure" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S02" DisplayName="SRM/SRR - Request appointment rescheduling" CodeSystem="HL70003" Usage="P" /><ValueElement Value="V03" DisplayName="VXR - Vaccination record response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I07" DisplayName="PIN/ACK - Unsolicited insurance information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E10" DisplayName="Edit/Adjudication Results" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O13" DisplayName="RDS - Pharmacy/treatment dispense" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A23" DisplayName="ADT/ACK -  Delete a patient record" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I01" DisplayName="RQI/RPI - Request for insurance information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M02" DisplayName="MFN/MFK - Master file - staff practitioner" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U12" DisplayName="LSU/ACK - Automated equipment log/service update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I13" DisplayName="REF/RRI - Modify patient referral" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B01" DisplayName="PMU/ACK - Add personnel record" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T12" DisplayName="QRY/DOC - Document query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="W02" DisplayName="QRF - Waveform result, response to query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S05" DisplayName="SRM/SRR - Request appointment discontinuation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B07" DisplayName="PMU/ACK - Grant Certificate/Permission" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U02" DisplayName="ESR/ACK - Automated equipment status request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A03" DisplayName="ADT/ACK -  Discharge/end visit" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A07" DisplayName="ADT/ACK -  Change an inpatient to an outpatient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O33" DisplayName="OML - Laboratory order for multiple orders related to a single specimen" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U03" DisplayName="SSU/ACK - Specimen status update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M08" DisplayName="MFN/MFK - Test/observation (numeric) master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A47" DisplayName="ADT/ACK - Change patient identifier list" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E20" DisplayName="Submit Authorization Request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S33" DisplayName="STC/ACK - Notification of sterilization configuration" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E01" DisplayName="Submit HealthCare Services Invoice" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C12" DisplayName="CSU - Update/correction of patient order/result information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K31" DisplayName="RSP -Dispense History Response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S10" DisplayName="SRM/SRR - Request discontinuation of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A62" DisplayName="ADT/ACK - Cancel change consulting doctor" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O19" DisplayName="OMG - General clinical order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A27" DisplayName="ADT/ACK -  Cancel pending admit" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S17" DisplayName="SIU/ACK - Notification of appointment deletion" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U07" DisplayName="EAC/ACK - Automated equipment command" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S20" DisplayName="SIU/ACK - Notification of cancellation of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A41" DisplayName="ADT/ACK - Merge account - patient account number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I09" DisplayName="RQA/RPA - Request for modification to an authorization" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B06" DisplayName="PMU/ACK - Terminate practicing person" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O34" DisplayName="ORL - Laboratory order response message to a multiple order related to single specimen OML" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U06" DisplayName="INR/ACK - Automated equipment inventory request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A45" DisplayName="ADT/ACK - Move visit information - visit number" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R02" DisplayName="QRY - Query for results of observation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S31" DisplayName="SDR/SDS - Request anti-microbial device data" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O05" DisplayName="OMS - Stock requisition order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P04" DisplayName="QRY/DSP - Generate bill and A/R statements" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K22" DisplayName="RSP - Find candidates response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R31" DisplayName="ORU - Unsolicited New Point-Of-Care Observation Message - Search For An Order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A05" DisplayName="ADT/ACK -  Pre-admit a patient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A25" DisplayName="ADT/ACK -  Cancel pending discharge" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S21" DisplayName="SIU/ACK - Notification of discontinuation of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I14" DisplayName="REF/RRI - Cancel patient referral" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R32" DisplayName="ORU - Unsolicited Pre-Ordered Point-Of-Care Observation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C04" DisplayName="CRM - Patient has gone off a clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M17" DisplayName="DRG Master File Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P10" DisplayName="BAR/ACK -Transmit Ambulatory Payment  Classification(APC)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M05" DisplayName="MFN/MFK - Patient location master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S29" DisplayName="SLR/SLS - Request Sterilization lot deletion" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K23" DisplayName="RSP - Get corresponding identifiers response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P11" DisplayName="DFT/ACK - Post Detail Financial Transactions - New" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B08" DisplayName="PMU/ACK - Revoke Certificate/Permission" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M07" DisplayName="MFN/MFK - Clinical study without phases but with schedules master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="V01" DisplayName="VXQ - Query for vaccination record" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K11" DisplayName="RSP - Segment pattern response in response to QBP^Q11" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C08" DisplayName="CRM - Patient has gone off phase of clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R01" DisplayName="ORU/ACK - Unsolicited transmission of an observation message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A08" DisplayName="ADT/ACK -  Update patient information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T01" DisplayName="MDM/ACK - Original document notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A53" DisplayName="ADT/ACK - Cancel patient returns from a leave of absence" CodeSystem="HL70003" Usage="P" /><ValueElement Value="I05" DisplayName="RQC/RCI - Request for patient clinical information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E21" DisplayName="Cancel Authorization Request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P03" DisplayName="DFT/ACK - Post detail financial transaction" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q29" DisplayName="RER - Pharmacy/treatment encoded order information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCC" DisplayName="PPP - PC/ pathway (problem-oriented) update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S14" DisplayName="SIU/ACK - Notification of appointment modification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A34" DisplayName="ADT/ACK -  Merge patient information - patient ID only (for backward compatibility only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O04" DisplayName="ORD - Diet order acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O14" DisplayName="RRD - Pharmacy/treatment dispense acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S28" DisplayName="SLR/SLS - Request new sterilization lot" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R23" DisplayName="OUL - Unsolicited Specimen Container Oriented Observation Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A24" DisplayName="ADT/ACK -  Link patient information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M10" DisplayName="MFN/MFK - Test /observation batteries master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R24" DisplayName="OUL - Unsolicited Order Oriented Observation Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O12" DisplayName="RRE - Pharmacy/treatment encoded order acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P06" DisplayName="BAR/ACK - End account" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S09" DisplayName="SRM/SRR - Request cancellation of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A32" DisplayName="ADT/ACK -  Cancel patient arriving - tracking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="B03" DisplayName="PMU/ACK - Delete personnel re cord" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O29" DisplayName="BPS - Blood product dispense status" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S15" DisplayName="SIU/ACK - Notification of appointment cancellation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S25" DisplayName="SQM/SQR - Schedule query message and response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q23" DisplayName="QBP - Get corresponding identifiers" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P08" DisplayName="PEX - Unsolicited update individual product experience report" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCE" DisplayName="QRY - PC/ pathway (problem-oriented) query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S23" DisplayName="SIU/ACK - Notification of blocked schedule time slot(s)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCD" DisplayName="PPP - PC/ pathway (problem-oriented) delete" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S35" DisplayName="SLN/ACK - Notification of sterilization lot deletion" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q15" DisplayName="QBP - Query by parameter requesting an RDY display response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A12" DisplayName="ADT/ACK -  Cancel transfer" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O01" DisplayName="ORM - Order message (also RDE, RDS, RGV, RAS)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P09" DisplayName="SUR - Summary product experience report" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q06" DisplayName="OSQ/OSR - Query for order status" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q11" DisplayName="QBP - Query by parameter requesting an RSP segment pattern response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E24" DisplayName="Authorization Response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M11" DisplayName="MFN/MFK - Test/calculated observations master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U10" DisplayName="TCU/ACK - Automated equipment test code settings update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E12" DisplayName="Request Additional Information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q16" DisplayName="QSB - Create subscription" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R21" DisplayName="OUL - Unsolicited laboratory observation" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC3" DisplayName="PPR - PC/ problem delete" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A31" DisplayName="ADT/ACK -  Update person information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="J01" DisplayName="QCN/ACK - Cancel query/acknowledge message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="K13" DisplayName="RTB - Tabular response in response to QBP^Q13" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P01" DisplayName="BAR/ACK - Add patient accounts" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC1" DisplayName="PPR - PC/ problem add" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O15" DisplayName="RGV - Pharmacy/treatment give" CodeSystem="HL70003" Usage="P" /><ValueElement Value="N02" DisplayName="NMD/ACK - Application management data message (unsolicited)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A04" DisplayName="ADT/ACK -  Register a patient" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S06" DisplayName="SRM/SRR - Request appointment deletion" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T10" DisplayName="MDM/ACK - Document replacement notification and content" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O23" DisplayName="OMI - Imaging order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A22" DisplayName="ADT/ACK -  Patient returns from a &quot;leave of absence&quot;" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O32" DisplayName="BRT - Blood product transfusion/disposition acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q25" DisplayName="QBP - Personnel Information by Segment Query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C07" DisplayName="CRM - Correct/update phase information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O02" DisplayName="ORR - Order response (also RRE, RRD, RRG, RRA)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC8" DisplayName="PGL - PC/ goal delete" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCJ" DisplayName="PPG - PC/ pathway (goal-oriented) delete" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C01" DisplayName="CRM - Register a patient on a clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U09" DisplayName="EAN/ACK - Automated equipment notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="Q30" DisplayName="RGR - Pharmacy/treatment dose information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O20" DisplayName="ORG/ORL - General clinical order response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A61" DisplayName="ADT/ACK - Change consulting doctor" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A11" DisplayName="ADT/ACK -  Cancel admit/visit notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U01" DisplayName="ESU/ACK - Automated equipment status update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="CNQ" DisplayName="Cancel Query" CodeSystem="HL70003" Usage="P" /><ValueElement Value="R25" DisplayName="OPU - Unsolicited Population/Location-Based Laboratory Observation Message" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M09" DisplayName="MFN/MFK - Test/observation (categorical) master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O10" DisplayName="ORP - Pharmacy/treatment order acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PCA" DisplayName="PPV - PC/ goal response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S12" DisplayName="SIU/ACK - Notification of new appointment booking" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S22" DisplayName="SIU/ACK - Notification of deletion of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T06" DisplayName="MDM/ACK - Document addendum notification and content" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M14" DisplayName="MFN/MFK - Master file notification - site defined" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O22" DisplayName="ORL - General laboratory order response message to any OML" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S13" DisplayName="SIU/ACK - Notification of appointment rescheduling" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A51" DisplayName="ADT/ACK - Change alternate visit ID" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O08" DisplayName="ORN - Non-stock requisition acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC5" DisplayName="PRR - PC/ problem response" CodeSystem="HL70003" Usage="P" /><ValueElement Value="PC7" DisplayName="PGL - PC/ goal update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A55" DisplayName="ADT/ACK - Cancel change attending doctor" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E02" DisplayName="Cancel HealthCare Services Invoice" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A37" DisplayName="ADT/ACK -  Unlink patient information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="P02" DisplayName="BAR/ACK - Purge patient accounts" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S30" DisplayName="STI/STS - Request item" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O06" DisplayName="ORS - Stock requisition acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A29" DisplayName="ADT/ACK -  Delete person information" CodeSystem="HL70003" Usage="P" /><ValueElement Value="U13" DisplayName="LSR/ACK - Automated equipment log/service request" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A14" DisplayName="ADT/ACK -  Pending admit" CodeSystem="HL70003" Usage="P" /><ValueElement Value="E22" DisplayName="Authorization Request Status" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O24" DisplayName="ORI - Imaging order response message to any OMI" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S18" DisplayName="SIU/ACK - Notification of addition of service/resource on appointment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O07" DisplayName="OMN - Non-stock requisition order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S24" DisplayName="SIU/ACK - Notification of opened (&quot;unblocked&quot;) schedule time slot(s)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="S36" DisplayName="SDN/ACK - Notification of anti-microbial device data" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C05" DisplayName="CRM - Patient enters phase of clinical trial" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O26" DisplayName="RRE - Pharmacy/Treatment Refill Authorization Acknowledgement" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A20" DisplayName="ADT/ACK -  Bed status update" CodeSystem="HL70003" Usage="P" /><ValueElement Value="T11" DisplayName="MDM/ACK - Document cancel notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O11" DisplayName="RDE - Pharmacy/treatment encoded order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C02" DisplayName="CRM - Cancel a patient registration on clinical trial (for clerical mistakes only)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="V02" DisplayName="VXX - Response to vaccination query returning multiple PID matches" CodeSystem="HL70003" Usage="P" /><ValueElement Value="C06" DisplayName="CRM - Cancel patient entering a phase (clerical mistake)" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O21" DisplayName="OML - Laboratory order" CodeSystem="HL70003" Usage="P" /><ValueElement Value="M06" DisplayName="MFN/MFK - Clinical study with phases and schedules master file" CodeSystem="HL70003" Usage="P" /><ValueElement Value="A01" DisplayName="ADT/ACK - Admit/visit notification" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O28" DisplayName="ORB - Blood product order acknowledgment" CodeSystem="HL70003" Usage="P" /><ValueElement Value="O03" DisplayName="OMD - Diet order" CodeSystem="HL70003" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70399_2-5" Name="Country code" Description="Country code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70447_2-5" Name="Breed Code" Description="Breed Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70308" Name="Floor" Description="Floor" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70115_2-5" Name="Servicing Facility" Description="Servicing Facility" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70299" Name="Encoding" Description="Encoding" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="A" DisplayName="No encoding - data are displayable ASCII characters." CodeSystem="HL70299" Usage="P" /><ValueElement Value="Base64" DisplayName="Encoding as defined by MIME (Multipurpose Internet Mail Extensions) standard RFC 1521. Four consecutive ASCII characters represent three consecutive octets of binary data. Base64 utilizes a 65-character subset of US-ASCII, consisting of both the upper and" CodeSystem="HL70299" Usage="P" /><ValueElement Value="Hex" DisplayName="Hexadecimal encoding - consecutive pairs of hexadecimal digits represent consecutive single octets." CodeSystem="HL70299" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70369" Name="Specimen Role" Description="Specimen Role" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Calibrator, used for initial setting of calibration" CodeSystem="HL70369" Usage="P" /><ValueElement Value="R" DisplayName="Replicate (of patient sample as a control)" CodeSystem="HL70369" Usage="P" /><ValueElement Value="G" DisplayName="Group (where a specimen consists of multiple individual elements that are not individually identified)" CodeSystem="HL70369" Usage="P" /><ValueElement Value="V" DisplayName="Verifying Calibrator, used for periodic calibration checks" CodeSystem="HL70369" Usage="P" /><ValueElement Value="E" DisplayName="Electronic QC, used with manufactured reference providing signals that simulate QC results" CodeSystem="HL70369" Usage="P" /><ValueElement Value="Q" DisplayName="Control specimen" CodeSystem="HL70369" Usage="P" /><ValueElement Value="B" DisplayName="Blind Sample" CodeSystem="HL70369" Usage="P" /><ValueElement Value="O" DisplayName="Specimen used for testing Operator Proficiency" CodeSystem="HL70369" Usage="P" /><ValueElement Value="F" DisplayName="Specimen used for testing proficiency of the organization performing the testing (Filler)" CodeSystem="HL70369" Usage="P" /><ValueElement Value="L" DisplayName="Pool (aliquots of individual specimens combined to form a single specimen representing all of the components.)" CodeSystem="HL70369" Usage="P" /><ValueElement Value="P" DisplayName="Patient (default if blank component value)" CodeSystem="HL70369" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70076" Name="Message type" Description="Message type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="QCN" DisplayName="Cancel query" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RDY" DisplayName="Display based response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMN" DisplayName="Non-stock requisition order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PPV" DisplayName="Patient goal response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="REF" DisplayName="Patient referral" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RAS" DisplayName="Pharmacy/treatment administration message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OML" DisplayName="Laboratory order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PPP" DisplayName="Patient pathway message (problem-oriented)" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OPR" DisplayName="Population/Location-Based Laboratory Order Acknowledgment Message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SRR" DisplayName="Scheduled request response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PMU" DisplayName="Add personnel record" CodeSystem="HL70076" Usage="P" /><ValueElement Value="VXR" DisplayName="Vaccination record response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RDS" DisplayName="Pharmacy/treatment dispense message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORI" DisplayName="Imaging order acknowledgement message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RQC" DisplayName="Request clinical information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RCI" DisplayName="Return clinical information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORF" DisplayName="Query for results of observation" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORL" DisplayName="Laboratory acknowledgment message (unsolicited)" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MFK" DisplayName="Master files application acknowledgment" CodeSystem="HL70076" Usage="P" /><ValueElement Value="BPS" DisplayName="Blood product dispense status message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OPU" DisplayName="Unsolicited Population/Location-Based Laboratory Observation Message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMG" DisplayName="General clinical order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="EAC" DisplayName="Automated equipment command message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="DSR" DisplayName="Display response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="VXX" DisplayName="Response for vaccination query with multiple PID matches" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RDE" DisplayName="Pharmacy/treatment encoded order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QBP" DisplayName="Query by parameter" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SQM" DisplayName="Schedule query message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="EHC" DisplayName="Health Care Invoice" CodeSystem="HL70076" Usage="P" /><ValueElement Value="BAR" DisplayName="Add/change billing account" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RER" DisplayName="Pharmacy/treatment encoded order information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SIU" DisplayName="Schedule information unsolicited" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORD" DisplayName="Dietary order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ADT" DisplayName="ADT message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMB" DisplayName="Blood product order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORS" DisplayName="Stock requisition - Order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORR" DisplayName="General order response message response to any ORM" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SRM" DisplayName="Schedule request message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="UDM" DisplayName="Unsolicited display update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QSX" DisplayName="Cancel subscription/acknowledge message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="LSR" DisplayName="Automated equipment log/service request message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PTR" DisplayName="Patient pathway problem-oriented response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OUL" DisplayName="Unsolicited laboratory observation message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ESR" DisplayName="Automated equipment status update acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="NMQ" DisplayName="Application management query message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORN" DisplayName="Non-stock requisition - General order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORM" DisplayName="Pharmacy/treatment order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MFQ" DisplayName="Master files query" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OSR" DisplayName="Query response for order status" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SMD" DisplayName="Sterilization anti-microbial device cycle data request" CodeSystem="HL70076" Usage="P" /><ValueElement Value="CSU" DisplayName="Unsolicited study data message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MFN" DisplayName="Master files notification" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SLN" DisplayName="Notification of New Sterilization Lot" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SSR" DisplayName="Specimen status request message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QVR" DisplayName="Query for previous events" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SUR" DisplayName="Summary product experience report" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SDN" DisplayName="Notification of Anti-Microbial Device Data" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PIN" DisplayName="Patient insurance information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MFD" DisplayName="Master files delayed application acknowledgment" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RCL" DisplayName="Return clinical list" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SQR" DisplayName="Schedule query response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="CRM" DisplayName="Clinical study registration message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SSU" DisplayName="Specimen status update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MDM" DisplayName="Medical document management" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PRR" DisplayName="Patient problem response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="MFR" DisplayName="Master files response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="BTS" DisplayName="Blood product transfusion/disposition message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QRY" DisplayName="Query, original mode" CodeSystem="HL70076" Usage="P" /><ValueElement Value="TBR" DisplayName="Tabular data response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OPL" DisplayName="Population/Location-Based Laboratory Order Message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORP" DisplayName="Pharmacy/treatment order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RRG" DisplayName="Pharmacy/treatment give acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SCN" DisplayName="Notification of Anti-Microbial Device Cycle Data" CodeSystem="HL70076" Usage="P" /><ValueElement Value="STC" DisplayName="Notification of Sterilization Configuration" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QCK" DisplayName="Query general acknowledgment" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ESU" DisplayName="Automated equipment status update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="DOC" DisplayName="Document response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="EAN" DisplayName="Automated equipment notification message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="TCU" DisplayName="Automated equipment test code settings update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="VXQ" DisplayName="Query for vaccination record" CodeSystem="HL70076" Usage="P" /><ValueElement Value="NMR" DisplayName="Application management response message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="EAR" DisplayName="Automated equipment response message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORU" DisplayName="Unsolicited transmission of an observation message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RDR" DisplayName="Pharmacy/treatment dispense information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RPR" DisplayName="Return patient list" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMD" DisplayName="Dietary order" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORG" DisplayName="General clinical order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="TCR" DisplayName="Automated equipment test code settings request message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PGL" DisplayName="Patient goal message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="NMD" DisplayName="Application management data message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RTB" DisplayName="Tabular response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OSQ" DisplayName="Query response for order status" CodeSystem="HL70076" Usage="P" /><ValueElement Value="LSU" DisplayName="Automated equipment log/service update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RQA" DisplayName="Request patient authorization" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PPR" DisplayName="Patient problem message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMP" DisplayName="Pharmacy/treatment order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RGR" DisplayName="Pharmacy/treatment dose information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ROR" DisplayName="Pharmacy/treatment order response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RRE" DisplayName="Pharmacy/treatment encoded order acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RRD" DisplayName="Pharmacy/treatment dispense acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PPG" DisplayName="Patient pathway message (goal-oriented)" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMI" DisplayName="Imaging order" CodeSystem="HL70076" Usage="P" /><ValueElement Value="INR" DisplayName="Automated equipment inventory request message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RSP" DisplayName="Segment pattern response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="INU" DisplayName="Automated equipment inventory update message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RRI" DisplayName="Return referral information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RGV" DisplayName="Pharmacy/treatment give message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RPA" DisplayName="Return patient authorization" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RPI" DisplayName="Return patient information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="OMS" DisplayName="Stock requisition order message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PPT" DisplayName="Patient pathway goal-oriented response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="QSB" DisplayName="Create subscription" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SDR" DisplayName="Sterilization anti-microbial device data request" CodeSystem="HL70076" Usage="P" /><ValueElement Value="BRP" DisplayName="Blood product dispense status acknowledgement message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RQP" DisplayName="Request patient demographics" CodeSystem="HL70076" Usage="P" /><ValueElement Value="BRT" DisplayName="Blood product transfusion/disposition acknowledgement message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="SLR" DisplayName="Sterilization lot request" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RPL" DisplayName="Return patient display list" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ACK" DisplayName="General acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="PEX" DisplayName="Product experience message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RRA" DisplayName="Pharmacy/treatment administration acknowledgment message" CodeSystem="HL70076" Usage="P" /><ValueElement Value="STI" DisplayName="Sterilization item request" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ADR" DisplayName="ADT response" CodeSystem="HL70076" Usage="P" /><ValueElement Value="VXU" DisplayName="Unsolicited vaccination record update" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RAR" DisplayName="Pharmacy/treatment administration information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="RQI" DisplayName="Request patient information" CodeSystem="HL70076" Usage="P" /><ValueElement Value="DFT" DisplayName="Detail financial transactions" CodeSystem="HL70076" Usage="P" /><ValueElement Value="ORB" DisplayName="Blood product order acknowledgement message" CodeSystem="HL70076" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70224" Name="Transport Arranged" Description="Transport Arranged" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Not Arranged" CodeSystem="HL70224" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70224" Usage="P" /><ValueElement Value="A" DisplayName="Arranged" CodeSystem="HL70224" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70304_2-5" Name="Bed" Description="Bed" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70105" Name="Source of comment" Description="Source of comment" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="P" DisplayName="Orderer (placer) is source of comment" CodeSystem="HL70105" Usage="P" /><ValueElement Value="O" DisplayName="Other system is source of comment" CodeSystem="HL70105" Usage="P" /><ValueElement Value="L" DisplayName="Ancillary (filler) department is source of comment" CodeSystem="HL70105" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70305_2-5" Name="Person location type" Description="Person location type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Nursing Unit" CodeSystem="HL70305" Usage="P" /><ValueElement Value="O" DisplayName="Provider's Office" CodeSystem="HL70305" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70305" Usage="P" /><ValueElement Value="C" DisplayName="Clinic" CodeSystem="HL70305" Usage="P" /><ValueElement Value="P" DisplayName="Phone" CodeSystem="HL70305" Usage="P" /><ValueElement Value="D" DisplayName="Department" CodeSystem="HL70305" Usage="P" /><ValueElement Value="S" DisplayName="SNF" CodeSystem="HL70305" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70073_2-5" Name="Interest Rate Code" Description="Interest Rate Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70483" Name="Authorization Mode" Description="Authorization Mode" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="MA" DisplayName="Mail" CodeSystem="HL70483" Usage="P" /><ValueElement Value="PA" DisplayName="Paper" CodeSystem="HL70483" Usage="P" /><ValueElement Value="VO" DisplayName="Voice" CodeSystem="HL70483" Usage="P" /><ValueElement Value="PH" DisplayName="Phone" CodeSystem="HL70483" Usage="P" /><ValueElement Value="VC" DisplayName="Video-conference" CodeSystem="HL70483" Usage="P" /><ValueElement Value="FX" DisplayName="Fax" CodeSystem="HL70483" Usage="P" /><ValueElement Value="IP" DisplayName="In Person" CodeSystem="HL70483" Usage="P" /><ValueElement Value="EL" DisplayName="Electronic" CodeSystem="HL70483" Usage="P" /><ValueElement Value="EM" DisplayName="E-mail" CodeSystem="HL70483" Usage="P" /><ValueElement Value="RE" DisplayName="Reflexive (Automated system)" CodeSystem="HL70483" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70289_2-9" Name="County/Parish" Description="County/Parish" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70289" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70485" Name="Extended Priority Codes" Description="Extended Priority Codes" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="TS&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /><ValueElement Value="T" DisplayName="Timing critical" CodeSystem="HL70485" Usage="P" /><ValueElement Value="TM&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /><ValueElement Value="C" DisplayName="Callback" CodeSystem="HL70485" Usage="P" /><ValueElement Value="TD&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /><ValueElement Value="TW&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /><ValueElement Value="PRN" DisplayName="As needed" CodeSystem="HL70485" Usage="P" /><ValueElement Value="P" DisplayName="Preop" CodeSystem="HL70485" Usage="P" /><ValueElement Value="TH&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /><ValueElement Value="S" DisplayName="Stat" CodeSystem="HL70485" Usage="P" /><ValueElement Value="A" DisplayName="ASAP" CodeSystem="HL70485" Usage="P" /><ValueElement Value="R" DisplayName="Routine" CodeSystem="HL70485" Usage="P" /><ValueElement Value="TL&lt;integer&gt;" DisplayName="" CodeSystem="HL70485" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70307_2-9" Name="Building" Description="Building" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70307" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70171_2-5" Name="Citizenship" Description="Citizenship" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70446_2-5" Name="Species Code" Description="Species Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70062" Name="Event reason" Description="Event reason" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="01" DisplayName="Patient request" CodeSystem="HL70062" Usage="P" /><ValueElement Value="03" DisplayName="Census management" CodeSystem="HL70062" Usage="P" /><ValueElement Value="02" DisplayName="Physician/health practitioner order" CodeSystem="HL70062" Usage="P" /><ValueElement Value="O" DisplayName="Other" CodeSystem="HL70062" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70062" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70364" Name="Comment type" Description="Comment type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="DR" DisplayName="Duplicate/Interaction Reason" CodeSystem="HL70364" Usage="P" /><ValueElement Value="RE" DisplayName="Remark" CodeSystem="HL70364" Usage="P" /><ValueElement Value="2R" DisplayName="Secondary Reason" CodeSystem="HL70364" Usage="P" /><ValueElement Value="1R" DisplayName="Primary Reason" CodeSystem="HL70364" Usage="P" /><ValueElement Value="PI" DisplayName="Patient Instructions" CodeSystem="HL70364" Usage="P" /><ValueElement Value="GI" DisplayName="General Instructions" CodeSystem="HL70364" Usage="P" /><ValueElement Value="GR" DisplayName="General Reason" CodeSystem="HL70364" Usage="P" /><ValueElement Value="AI" DisplayName="Ancillary Instructions" CodeSystem="HL70364" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70288_2-9" Name="Census Tract" Description="Census Tract" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70288" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70302" Name="Point of care" Description="Point of care" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70288_2-5" Name="Census tract" Description="Census tract" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70304_2-9" Name="Bed" Description="Bed" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="..." DisplayName="No suggested values defined" CodeSystem="HL70304" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70615" Name="User Authentication Credential Type Code" Description="User Authentication Credential Type Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SAML" DisplayName="Authenticated User Identity Assertion" CodeSystem="HL70615" Usage="P" /><ValueElement Value="KERB" DisplayName="Kerberos Service Ticket" CodeSystem="HL70615" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70272" Name="Document Confidentiality Status" Description="Document Confidentiality Status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="U" DisplayName="Usual control" CodeSystem="HL70272" Usage="P" /><ValueElement Value="R" DisplayName="Restricted" CodeSystem="HL70272" Usage="P" /><ValueElement Value="V" DisplayName="Very restricted" CodeSystem="HL70272" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70306" Name="Location status" Description="Location status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70185_2-9" Name="Preferred Method of Contact" Description="Preferred Method of Contact" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="C" DisplayName="Cellular Phone Number" CodeSystem="HL70185" Usage="P" /><ValueElement Value="E" DisplayName="E-Mail Address (for backward compatibility)" CodeSystem="HL70185" Usage="P" /><ValueElement Value="O" DisplayName="Office Phone Number" CodeSystem="HL70185" Usage="P" /><ValueElement Value="F" DisplayName="FAX Number" CodeSystem="HL70185" Usage="P" /><ValueElement Value="B" DisplayName="Beeper Number" CodeSystem="HL70185" Usage="P" /><ValueElement Value="H" DisplayName="Home Phone Number" CodeSystem="HL70185" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70411" Name="Supplemental Service Information Values" Description="Supplemental Service Information Values" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70110_2-5" Name="Transfer to Bad Debt Code" Description="Transfer to Bad Debt Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70429_2-5" Name="Production Class Code" Description="Production Class Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="DU" DisplayName="Dual Purpose" CodeSystem="HL70429" Usage="P" /><ValueElement Value="PL" DisplayName="Pleasure" CodeSystem="HL70429" Usage="P" /><ValueElement Value="DR" DisplayName="Draft" CodeSystem="HL70429" Usage="P" /><ValueElement Value="BR" DisplayName="Breeding/genetic stock" CodeSystem="HL70429" Usage="P" /><ValueElement Value="LY" DisplayName="Layer, Includes Multiplier flocks" CodeSystem="HL70429" Usage="P" /><ValueElement Value="NA" DisplayName="Not Applicable" CodeSystem="HL70429" Usage="P" /><ValueElement Value="DA" DisplayName="Dairy" CodeSystem="HL70429" Usage="P" /><ValueElement Value="RA" DisplayName="Racing" CodeSystem="HL70429" Usage="P" /><ValueElement Value="SH" DisplayName="Show" CodeSystem="HL70429" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70429" Usage="P" /><ValueElement Value="OT" DisplayName="Other" CodeSystem="HL70429" Usage="P" /><ValueElement Value="MT" DisplayName="Meat" CodeSystem="HL70429" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70303" Name="Room" Description="Room" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70006_2-5" Name="Religion" Description="Religion" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="JWN" DisplayName="Christian: Jehovah's Witness" CodeSystem="HL70006" Usage="P" /><ValueElement Value="VAR" DisplayName="Unknown" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JEW" DisplayName="Jewish" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BUD" DisplayName="Buddhist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="LUT" DisplayName="Christian: Lutheran" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SIK" DisplayName="Sikh" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SOU" DisplayName="Christian: Southern Baptist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="AOG" DisplayName="Christian: Assembly of God" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CFR" DisplayName="Chinese Folk Religionist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="UMD" DisplayName="Christian: United Methodist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="UNU" DisplayName="Christian: Unitarian Universalist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="AGN" DisplayName="Agnostic" CodeSystem="HL70006" Usage="P" /><ValueElement Value="ORT" DisplayName="Christian: Orthodox" CodeSystem="HL70006" Usage="P" /><ValueElement Value="EPI" DisplayName="Christian: Episcopalian" CodeSystem="HL70006" Usage="P" /><ValueElement Value="FWB" DisplayName="Christian: Free Will Baptist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="HSH" DisplayName="Hindu: Shaivites" CodeSystem="HL70006" Usage="P" /><ValueElement Value="NRL" DisplayName="New Religionist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="OTH" DisplayName="Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="HOT" DisplayName="Hindu: Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="WES" DisplayName="Christian: Wesleyan" CodeSystem="HL70006" Usage="P" /><ValueElement Value="LMS" DisplayName="Christian: Lutheran Missouri Synod" CodeSystem="HL70006" Usage="P" /><ValueElement Value="UCC" DisplayName="Christian: United Church of Christ" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CRR" DisplayName="Christian: Christian Reformed" CodeSystem="HL70006" Usage="P" /><ValueElement Value="PRO" DisplayName="Christian: Protestant" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COC" DisplayName="Christian: Church of Christ" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BAP" DisplayName="Christian: Baptist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MOT" DisplayName="Muslim: Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="ATH" DisplayName="Atheist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CHS" DisplayName="Christian: Christian Science" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JAI" DisplayName="Jain" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JRC" DisplayName="Jewish: Reconstructionist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="PRC" DisplayName="Christian: Other Protestant" CodeSystem="HL70006" Usage="P" /><ValueElement Value="AMT" DisplayName="Christian: African Methodist Episcopal" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SEV" DisplayName="Christian: Seventh Day Adventist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COG" DisplayName="Christian: Church of God" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MET" DisplayName="Christian: Methodist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="FRQ" DisplayName="Christian: Friends" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BMA" DisplayName="Buddhist: Mahayana" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BAH" DisplayName="Baha'i" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SHN" DisplayName="Shintoist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="GRE" DisplayName="Christian: Greek Orthodox" CodeSystem="HL70006" Usage="P" /><ValueElement Value="REC" DisplayName="Christian: Reformed Church" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JOR" DisplayName="Jewish: Orthodox" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MEN" DisplayName="Christian: Mennonite" CodeSystem="HL70006" Usage="P" /><ValueElement Value="NAZ" DisplayName="Christian: Church of the Nazarene" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CHR" DisplayName="Christian" CodeSystem="HL70006" Usage="P" /><ValueElement Value="PRE" DisplayName="Christian: Presbyterian" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CMA" DisplayName="Christian: Christian Missionary Alliance" CodeSystem="HL70006" Usage="P" /><ValueElement Value="QUA" DisplayName="Christian: Friends" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MSU" DisplayName="Muslim: Sunni" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MSH" DisplayName="Muslim: Shiite" CodeSystem="HL70006" Usage="P" /><ValueElement Value="NOE" DisplayName="Nonreligious" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COL" DisplayName="Christian: Congregational" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CAT" DisplayName="Christian: Roman Catholic" CodeSystem="HL70006" Usage="P" /><ValueElement Value="ERL" DisplayName="Ethnic Religionist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COT" DisplayName="Christian: Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COM" DisplayName="Christian: Community" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BOT" DisplayName="Buddhist: Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="NAM" DisplayName="Native American" CodeSystem="HL70006" Usage="P" /><ValueElement Value="UNI" DisplayName="Christian: Unitarian" CodeSystem="HL70006" Usage="P" /><ValueElement Value="CNF" DisplayName="Confucian" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JOT" DisplayName="Jewish: Other" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COI" DisplayName="Christian: Church of God in Christ" CodeSystem="HL70006" Usage="P" /><ValueElement Value="HIN" DisplayName="Hindu" CodeSystem="HL70006" Usage="P" /><ValueElement Value="HVA" DisplayName="Hindu: Vaishnavites" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JRF" DisplayName="Jewish: Reform" CodeSystem="HL70006" Usage="P" /><ValueElement Value="WMC" DisplayName="Christian: Wesleyan Methodist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BTH" DisplayName="Buddhist: Theravada" CodeSystem="HL70006" Usage="P" /><ValueElement Value="EOT" DisplayName="Christian: Eastern Orthodox" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MOS" DisplayName="Muslim" CodeSystem="HL70006" Usage="P" /><ValueElement Value="PEN" DisplayName="Christian: Pentecostal" CodeSystem="HL70006" Usage="P" /><ValueElement Value="MOM" DisplayName="Christian: Latter-day Saints" CodeSystem="HL70006" Usage="P" /><ValueElement Value="ANG" DisplayName="Christian: Anglican" CodeSystem="HL70006" Usage="P" /><ValueElement Value="COP" DisplayName="Christian: Other Pentecostal" CodeSystem="HL70006" Usage="P" /><ValueElement Value="EVC" DisplayName="Christian: Evangelical Church" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SAA" DisplayName="Christian: Salvation Army" CodeSystem="HL70006" Usage="P" /><ValueElement Value="ABC" DisplayName="Christian: American Baptist Church" CodeSystem="HL70006" Usage="P" /><ValueElement Value="AME" DisplayName="Christian: African Methodist Episcopal Zion" CodeSystem="HL70006" Usage="P" /><ValueElement Value="BTA" DisplayName="Buddhist: Tantrayana" CodeSystem="HL70006" Usage="P" /><ValueElement Value="SPI" DisplayName="Spiritist" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JCO" DisplayName="Jewish: Conservative" CodeSystem="HL70006" Usage="P" /><ValueElement Value="JRN" DisplayName="Jewish: Renewal" CodeSystem="HL70006" Usage="P" /><ValueElement Value="REO" DisplayName="Christian: Reorganized Church of Jesus Christ-LDS" CodeSystem="HL70006" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70275" Name="Document Storage Status" Description="Document Storage Status" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="AC" DisplayName="Active" CodeSystem="HL70275" Usage="P" /><ValueElement Value="AR" DisplayName="Archived (not active)" CodeSystem="HL70275" Usage="P" /><ValueElement Value="AA" DisplayName="Active and archived" CodeSystem="HL70275" Usage="P" /><ValueElement Value="PU" DisplayName="Purged" CodeSystem="HL70275" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70617" Name="Address Usage" Description="Address Usage" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="M" DisplayName="Mailing" CodeSystem="HL70617" Usage="P" /><ValueElement Value="C" DisplayName="Classification" CodeSystem="HL70617" Usage="P" /><ValueElement Value="V" DisplayName="Visit" CodeSystem="HL70617" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70527" Name="Calendar alignment" Description="Calendar alignment" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="DM" DisplayName="day of the month" CodeSystem="HL70527" Usage="P" /><ValueElement Value="SN" DisplayName="second of the minute" CodeSystem="HL70527" Usage="P" /><ValueElement Value="WY" DisplayName="week of the year" CodeSystem="HL70527" Usage="P" /><ValueElement Value="MY" DisplayName="month of the year" CodeSystem="HL70527" Usage="P" /><ValueElement Value="HD" DisplayName="hour of the day" CodeSystem="HL70527" Usage="P" /><ValueElement Value="NH" DisplayName="minute of the hour" CodeSystem="HL70527" Usage="P" /><ValueElement Value="DW" DisplayName="day of the week (begins with Monday)" CodeSystem="HL70527" Usage="P" /><ValueElement Value="DY" DisplayName="day of the year" CodeSystem="HL70527" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70207" Name="Processing mode" Description="Processing mode" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="I" DisplayName="Initial load" CodeSystem="HL70207" Usage="P" /><ValueElement Value="R" DisplayName="Restore from archive" CodeSystem="HL70207" Usage="P" /><ValueElement Value="A" DisplayName="Archive" CodeSystem="HL70207" Usage="P" /><ValueElement Value="T" DisplayName="Current processing, transmitted at intervals (scheduled or on demand)" CodeSystem="HL70207" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70289" Name="County/parish" Description="County/parish" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70961_2-9" Name="Domain of concepts describing what kind a particular device is. Focus here is on devices used in the medical field." Description="Domain of concepts describing what kind a particular device is. Focus here is on devices used in the medical field." Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70300" Name="Namespace ID" Description="Namespace ID" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70203_2-5" Name="Identifier type" Description="Identifier type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="VS" DisplayName="VISA" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DFN" DisplayName="Drug Furnishing or prescriptive authority Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NE" DisplayName="National employer identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MRT" DisplayName="Temporary Medical Record Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PNT" DisplayName="Temporary Living Subject Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PCN" DisplayName="Penitentiary/correctional institution Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MS" DisplayName="MasterCard" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NIIP" DisplayName="National Insurance Payor Identifier (Payor)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PE" DisplayName="Living Subject Enterprise Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="LN" DisplayName="License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="WCN" DisplayName="Workers' Comp Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CC" DisplayName="Cost Center number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCD" DisplayName="Practitioner Medicaid number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="TAX" DisplayName="Tax ID number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANON" DisplayName="Anonymous identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GN" DisplayName="Guarantor external  identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PN" DisplayName="Person number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DPM" DisplayName="Podiatrist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANT" DisplayName="Temporary Account Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="EN" DisplayName="Employer number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="VN" DisplayName="Visit number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BR" DisplayName="Birth registry number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="LI" DisplayName="Labor and industries number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NPI" DisplayName="National provider identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="FI" DisplayName="Facility ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCN" DisplayName="Microchip Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DDS" DisplayName="Dentist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="TN" DisplayName="Treaty Number/ (Canada)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BRN" DisplayName="Breed Registry Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RPH" DisplayName="Pharmacist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DEA" DisplayName="Drug Enforcement Administration registration number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DO" DisplayName="Osteopathic License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MC" DisplayName="Patient's Medicare number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PEN" DisplayName="Pension Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RN" DisplayName="Registered Nurse Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GI" DisplayName="Guarantor internal identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PRC" DisplayName="Permanent Resident Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="HC" DisplayName="Health Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ANC" DisplayName="Account number Creditor" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MD" DisplayName="Medical License number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="CY" DisplayName="County number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DS" DisplayName="Discover Card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="U" DisplayName="Unspecified identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DN" DisplayName="Doctor number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SS" DisplayName="Social Security number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BA" DisplayName="Bank Account Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="JHN" DisplayName="Jurisdictional health number (Canada)" CodeSystem="HL70203" Usage="P" /><ValueElement Value="XX" DisplayName="Organization identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MB" DisplayName="Member Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NH" DisplayName="National Health Plan Identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MA" DisplayName="Patient Medicaid number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PT" DisplayName="Patient external identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="WC" DisplayName="WIC identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PA" DisplayName="Physician Assistant number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RRI" DisplayName="Regional registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AND" DisplayName="Account number debitor" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MCR" DisplayName="Practitioner Medicare number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MR" DisplayName="Medical record number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PPN" DisplayName="Passport number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RR" DisplayName="Railroad Retirement number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PI" DisplayName="Patient internal identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DR" DisplayName="Donor Registration Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="EI" DisplayName="Employee number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="QA" DisplayName="QA number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="GL" DisplayName="General ledger number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="OD" DisplayName="Optometrist license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DI" DisplayName="Diner's Club card" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MI" DisplayName="Military ID number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="PRN" DisplayName="Provider number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="BC" DisplayName="Bank Card Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="APRN" DisplayName="Advanced Practice Registered Nurse number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="LR" DisplayName="Local Registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SN" DisplayName="Subscriber Number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RI" DisplayName="Resource identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="UPIN" DisplayName="Medicare/CMS (formerly HCFA)'s Universal Physician Identification numbers" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NI" DisplayName="National unique individual identifier" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NP" DisplayName="Nurse practitioner number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AM" DisplayName="American Express" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AN" DisplayName="Account number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="DL" DisplayName="Driver's license number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NNxxx" DisplayName="National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SL" DisplayName="State license" CodeSystem="HL70203" Usage="P" /><ValueElement Value="IND" DisplayName="Indigenous/Aboriginal" CodeSystem="HL70203" Usage="P" /><ValueElement Value="SR" DisplayName="State registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NII" DisplayName="National Insurance Organization Identifier" CodeSystem="HL70203" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70482" Name="Order Type" Description="Order Type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="I" DisplayName="Inpatient Order" CodeSystem="HL70482" Usage="P" /><ValueElement Value="O" DisplayName="Outpatient Order" CodeSystem="HL70482" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70616_2-9" Name="Address Expiration Reason" Description="Address Expiration Reason" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="E" DisplayName="Added in error" CodeSystem="HL70616" Usage="P" /><ValueElement Value="C" DisplayName="Corrected" CodeSystem="HL70616" Usage="P" /><ValueElement Value="M" DisplayName="Moved" CodeSystem="HL70616" Usage="P" /><ValueElement Value="R" DisplayName="On request" CodeSystem="HL70616" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70172_2-5" Name="Veterans Military Status" Description="Veterans Military Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70177" Name="Confidentiality code" Description="Confidentiality code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ETH" DisplayName="Alcohol/drug treatment patient" CodeSystem="HL70177" Usage="P" /><ValueElement Value="UWM" DisplayName="Unwed mother" CodeSystem="HL70177" Usage="P" /><ValueElement Value="VIP" DisplayName="Very important person or celebrity" CodeSystem="HL70177" Usage="P" /><ValueElement Value="EMP" DisplayName="Employee" CodeSystem="HL70177" Usage="P" /><ValueElement Value="R" DisplayName="Restricted" CodeSystem="HL70177" Usage="P" /><ValueElement Value="HIV" DisplayName="HIV(+) patient" CodeSystem="HL70177" Usage="P" /><ValueElement Value="V" DisplayName="Very restricted" CodeSystem="HL70177" Usage="P" /><ValueElement Value="U" DisplayName="Usual control" CodeSystem="HL70177" Usage="P" /><ValueElement Value="AID" DisplayName="AIDS patient" CodeSystem="HL70177" Usage="P" /><ValueElement Value="PSY" DisplayName="Psychiatric patient" CodeSystem="HL70177" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70307" Name="Building" Description="Building" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70339" Name="Advanced Beneficiary Notice Code" Description="Advanced Beneficiary Notice Code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="3" DisplayName="Patient has been informed of responsibility, and asks that the payer be billed" CodeSystem="HL70339" Usage="P" /><ValueElement Value="1" DisplayName="Service is subject to medical necessity procedures" CodeSystem="HL70339" Usage="P" /><ValueElement Value="2" DisplayName="Patient has been informed of responsibility, and agrees to pay for service" CodeSystem="HL70339" Usage="P" /><ValueElement Value="4" DisplayName="Advanced Beneficiary Notice has not been signed" CodeSystem="HL70339" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70044_2-5" Name="Contract Code" Description="Contract Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional" /><ValueSetDefinition BindingIdentifier="HL70204_2-9" Name="Organizational Name Type" Description="Organizational Name Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="SL" DisplayName="Stock exchange listing name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="A" DisplayName="Alias name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="D" DisplayName="Display name" CodeSystem="HL70204" Usage="P" /><ValueElement Value="L" DisplayName="Legal name" CodeSystem="HL70204" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70338_2-9" Name="Practitioner ID Number Type" Description="Practitioner ID Number Type" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="UPIN" DisplayName="Unique physician ID no." CodeSystem="HL70338" Usage="P" /><ValueElement Value="LI" DisplayName="Labor and industries number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="MCD" DisplayName="Medicaid number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="MCR" DisplayName="Medicare number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="TRL" DisplayName="Training license number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="L&amp;I" DisplayName="Labor and industries number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="SL" DisplayName="State license number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="CY" DisplayName="County number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="DEA" DisplayName="Drug Enforcement Agency no." CodeSystem="HL70338" Usage="P" /><ValueElement Value="GL" DisplayName="General ledger number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="QA" DisplayName="QA number" CodeSystem="HL70338" Usage="P" /><ValueElement Value="TAX" DisplayName="Tax ID number" CodeSystem="HL70338" Usage="P" /></ValueSetDefinition></ValueSetDefinitions><ValueSetDefinitions Group="HL7_Profile" Order="2"><ValueSetDefinition BindingIdentifier="HL70002_PAM-FR_2-5" Name="Marital Status" Description="Marital Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="G" DisplayName="Living together" CodeSystem="HL70002" Usage="P" /><ValueElement Value="P" DisplayName="Domestic partner" CodeSystem="HL70002" Usage="P" /><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70002" Usage="P" /><ValueElement Value="S" DisplayName="Single" CodeSystem="HL70002" Usage="P" /><ValueElement Value="M" DisplayName="Married" CodeSystem="HL70002" Usage="P" /><ValueElement Value="W" DisplayName="Widowed" CodeSystem="HL70002" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="expandedYes-NoIndicator" Name="Yes/no indicator" Description="Yes/no indicator" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="No" CodeSystem="expandedYes-NoIndicator" Usage="P" /><ValueElement Value="Y" DisplayName="Yes" CodeSystem="expandedYes-NoIndicator" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70117_FR_2-5" Name="Account Status" Description="Account Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Ce n’était pas la dernière venue  pour ce dossier administratif" CodeSystem="HL70117" Usage="P" /><ValueElement Value="D" DisplayName="C’était la dernière venue pour ce  dossier administratif" CodeSystem="HL70117" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70116_FR_2-5" Name="Bed Status" Description="Bed Status" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="U" DisplayName="Unoccupied" CodeSystem="HL70116" Usage="P" /><ValueElement Value="O" DisplayName="Occupied" CodeSystem="HL70116" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="participation_2-9" Name="Participation" Description="Participation" Version="2.9" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="RCT" DisplayName="Results Copies To" CodeSystem="participation" Usage="P" /><ValueElement Value="REPLY" DisplayName="null" CodeSystem="participation" Usage="P" /><ValueElement Value="SB" DisplayName="Send by" CodeSystem="participation" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70069_FR" Name="Hospital Service" Description="Hospital Service" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="181" DisplayName="Chirurgie générale et spécialités chirurgicales indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="170" DisplayName="Convalescence" CodeSystem="HL70069" Usage="P" /><ValueElement Value="121" DisplayName="Diabétologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="127" DisplayName="Médecine cardio-vasculaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="167" DisplayName="Chroniques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="304" DisplayName="Transplantation du foie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="622" DisplayName="Cure médicale pour enfants énurétiques (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="614" DisplayName="Cure médicale pour enfants épileptiques (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="222" DisplayName="Traitements préventifs de la tuberculose (aérium)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="828" DisplayName="Cure thermale pour maladies cardio-artérielles" CodeSystem="HL70069" Usage="P" /><ValueElement Value="611" DisplayName="Cure médicale pour enfants convalescents de rhumatismes aigus (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="731" DisplayName="Autres spécialités pédiatriques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="739" DisplayName="Rééducation fonctionnelle et réadaptation motrice - orientation traumatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="180" DisplayName="Rééducation des affections respiratoires" CodeSystem="HL70069" Usage="P" /><ValueElement Value="268" DisplayName="Action médico-sociale précoce pour autre catégorie de clientèle" CodeSystem="HL70069" Usage="P" /><ValueElement Value="723" DisplayName="Autodialyse" CodeSystem="HL70069" Usage="P" /><ValueElement Value="143" DisplayName="Spécialités chirurgicales indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="39" DisplayName="Radiothérapie externe (césium, cobalt)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="717" DisplayName="Soins hautement spécialisés en médecine" CodeSystem="HL70069" Usage="P" /><ValueElement Value="110" DisplayName="Pédiatrie nouveau-nés et nourrissons indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="402" DisplayName="Service d'accueil et de traitement des urgences (SAU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="645" DisplayName="Oxygénothérapie isolée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="467" DisplayName="Cure médicale spécialisée cardiologique pour enfants" CodeSystem="HL70069" Usage="P" /><ValueElement Value="113" DisplayName="Médecine gériatrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="206" DisplayName="Lutte anti-hansénienne (lèpre)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="553" DisplayName="Entraînement à la dialyse péritonéale à domicile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="105" DisplayName="Réanimation polyvalente (médicale + chirurgicale, y compris soins intensifs)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="324" DisplayName="Action médico-sociale précoce pour enfants déficients intellectuels" CodeSystem="HL70069" Usage="P" /><ValueElement Value="133" DisplayName="Rhumatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="116" DisplayName="Dermatologie et vénérologie indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="123" DisplayName="Hématologie et maladies du sang" CodeSystem="HL70069" Usage="P" /><ValueElement Value="129" DisplayName="Neurologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="606" DisplayName="Cure thermale pour enfants (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="226" DisplayName="Accueil et orientation des malades atteints ou suspects de tuberculose pulmonaire (centre départemental de phtisiologie)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="657" DisplayName="Hébergement temporaire pour personnes âgées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="609" DisplayName="Cure médicale pour enfants atteints d'affections chroniques non tuberculeuses des voies respiratoires (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="465" DisplayName="Cure médicale spécialisée pneumologique pour tous âges" CodeSystem="HL70069" Usage="P" /><ValueElement Value="225" DisplayName="Médecine interne" CodeSystem="HL70069" Usage="P" /><ValueElement Value="118" DisplayName="Vénérologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="799" DisplayName="Assistance ventilatoire avec prothèse extra-thoracique (insuffisants respiratoires)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="273" DisplayName="Hébergement en service de soins de longue durée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="160" DisplayName="Chirurgie maxillo-faciale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="641" DisplayName="Réanimation en cardiologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="610" DisplayName="Cure médicale pour enfants convalescents de rhumatismes aigus (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="722" DisplayName="Maladies infectieuses, tropicales et exotiques indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="139" DisplayName="Chirurgie enfants et adolescents" CodeSystem="HL70069" Usage="P" /><ValueElement Value="148" DisplayName="Chirurgie thoraco-pulmonaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="801" DisplayName="Insulinothérapie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="227" DisplayName="Postcure pour tuberculeux" CodeSystem="HL70069" Usage="P" /><ValueElement Value="729" DisplayName="Nephrologie infantile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="612" DisplayName="Cure médicale pour enfants diabétiques (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="733" DisplayName="Gastro-entérologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="620" DisplayName="Cure médicale pour enfants atteints d'infirmités orthopédiques (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="809" DisplayName="Hématologie pédiatrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="313" DisplayName="Psychiatrie - sorties modifiant la tarification" CodeSystem="HL70069" Usage="P" /><ValueElement Value="798" DisplayName="Hémodialyse et hémofiltration pour chroniques enfants" CodeSystem="HL70069" Usage="P" /><ValueElement Value="156" DisplayName="ORL" CodeSystem="HL70069" Usage="P" /><ValueElement Value="646" DisplayName="Assistance ventilatoire sans trachéotomie (insuffisants respiratoires)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="142" DisplayName="Surveillance continue chirurgicale (non compris soins intensifs)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="405" DisplayName="Pôle spécialisé d'urgence en cardiologie (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="157" DisplayName="Ophtalmologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="158" DisplayName="Stomatologie et chirurgie maxillo-faciale indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="124" DisplayName="Hépato-gastro-entérologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="173" DisplayName="Cure thermale indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="135" DisplayName="Radiothérapie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="219" DisplayName="Lutte contre la tuberculose pulmonaire (sanatorium pulmonaire, hôtel de cure)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="130" DisplayName="Pneumologie indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="309" DisplayName="Interruption volontaire de grossesse" CodeSystem="HL70069" Usage="P" /><ValueElement Value="409" DisplayName="Autre pôle spécialisé d'urgence non dénommé ailleurs (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="651" DisplayName="Cure thermale des affections bucco-linguales" CodeSystem="HL70069" Usage="P" /><ValueElement Value="654" DisplayName="Hébergement spécialisé pour enfants et adolescents handicapés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="466" DisplayName="Convalescence et réadaptation pour personnes âgées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="151" DisplayName="Neuro-chirurgie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="637" DisplayName="Surveillance continue en cardiologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="106" DisplayName="Surveillance continue - médecine (non compris soins intensifs)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="311" DisplayName="Transplantation coeur-poumon" CodeSystem="HL70069" Usage="P" /><ValueElement Value="314" DisplayName="Allogreffe de moëlle osseuse" CodeSystem="HL70069" Usage="P" /><ValueElement Value="608" DisplayName="Cure médicale pour enfants atteints d'affections chroniques non tuberculeuses des voies respiratoires (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="635" DisplayName="Réanimation néonatale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="721" DisplayName="Radiothérapie métabolique (ingestion de source)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="310" DisplayName="Examens de santé et bilans" CodeSystem="HL70069" Usage="P" /><ValueElement Value="178" DisplayName="Rééducation fonctionnelle et réadaptation motrice indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="736" DisplayName="Traumatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="464" DisplayName="Cure médicale spécialisée pneumologique pour enfants" CodeSystem="HL70069" Usage="P" /><ValueElement Value="321" DisplayName="Action médico-sociale précoce pour enfants déficients auditifs" CodeSystem="HL70069" Usage="P" /><ValueElement Value="161" DisplayName="Urologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="552" DisplayName="Entraînement à l'hémodialyse à domicile et à l'autodialyse" CodeSystem="HL70069" Usage="P" /><ValueElement Value="176" DisplayName="Soins de longue durée pour personnes ayant perdu leur autonomie de vie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="457" DisplayName="Cure médicale spécialisée contre la tuberculose indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="636" DisplayName="Réanimation pédiatrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="155" DisplayName="ORL et ophtalmologie indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="126" DisplayName="Médecine carcinologique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="618" DisplayName="Cure médicale pour enfants hémophiles (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="196" DisplayName="Alcoologie (lutte contre l'alcoolisme)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="132" DisplayName="Phtisiologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="182" DisplayName="Rééducation des maladies cardio-vasculaires" CodeSystem="HL70069" Usage="P" /><ValueElement Value="325" DisplayName="Placement familial spécialisé pour enfants handicapés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="730" DisplayName="Carcinologie infantile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="134" DisplayName="Radiothérapie et médecine nucléaire indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="663" DisplayName="Nutrition parentérale pour enfants" CodeSystem="HL70069" Usage="P" /><ValueElement Value="831" DisplayName="Cure thermale en phlébologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="826" DisplayName="Traitement spécialisé contre la douleur" CodeSystem="HL70069" Usage="P" /><ValueElement Value="738" DisplayName="Rééducation fonctionnelle et réadaptation motrice - orientation rhumatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="102" DisplayName="Maladies infectieuses" CodeSystem="HL70069" Usage="P" /><ValueElement Value="605" DisplayName="Cure médicale non spécialisée pour enfants (MECS ouverte temporairement)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="460" DisplayName="Cure médicale spécialisée contre la tuberculose (préventorium)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="103" DisplayName="Toxicologie (y compris en particulier l'activité des centres anti-poison)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="595" DisplayName="Convalescence post-natale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="743" DisplayName="Immuno-hématologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="463" DisplayName="Autre cure médicale spécialisée pour tous âges" CodeSystem="HL70069" Usage="P" /><ValueElement Value="808" DisplayName="Sectorisation psychiatrique en milieu pénitentiaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="117" DisplayName="Dermatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="223" DisplayName="Médecine générale ou polyvalente" CodeSystem="HL70069" Usage="P" /><ValueElement Value="179" DisplayName="Rééducation fonctionnelle et réadaptation neurologique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="728" DisplayName="Cardiologie infantile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="320" DisplayName="Centres médico-psycho-pédagogiques (C.M.P.P.) (Activité des...)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="159" DisplayName="Stomatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="459" DisplayName="Cure médicale spécialisée contre la tuberculose extra-pulmonaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="407" DisplayName="Pôle spécialisé d'urgence en &quot;SOS main&quot; (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="108" DisplayName="Pédiatrie indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="214" DisplayName="Postcure pour alcooliques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="355" DisplayName="Activités des centres de jour pour personnes âgées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="555" DisplayName="Dialyse péritonéale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="125" DisplayName="Maladies tropicales et exotiques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="193" DisplayName="Cure thermale en rhumatologie et séquelles de traumatismes ostéo-articulaires" CodeSystem="HL70069" Usage="P" /><ValueElement Value="194" DisplayName="Cure thermale en dermatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="735" DisplayName="Réanimation chirurgicale adulte" CodeSystem="HL70069" Usage="P" /><ValueElement Value="458" DisplayName="Cure médicale spécialisée contre la tuberculose pulmonaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="806" DisplayName="Atelier thérapeutique pour adultes" CodeSystem="HL70069" Usage="P" /><ValueElement Value="616" DisplayName="Cure médicale pour enfants atteints de déficiences temporaires somato-psychologiques (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="732" DisplayName="Hépatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="187" DisplayName="Autre rééducation fonctionnelle et réadaptation" CodeSystem="HL70069" Usage="P" /><ValueElement Value="185" DisplayName="Repos et convalescence indifférenciés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="720" DisplayName="Réanimation néonatale et pédiatrique indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="174" DisplayName="Médecine générale et spécialités médicales indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="189" DisplayName="Cure thermale des voies respiratoires" CodeSystem="HL70069" Usage="P" /><ValueElement Value="825" DisplayName="Soins et accompagnement des malades en phase terminale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="195" DisplayName="Lutte contre les toxicomanies (autres que l'alcoolisme)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="639" DisplayName="Surveillance continue en néphrologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="146" DisplayName="Chirurgie digestive" CodeSystem="HL70069" Usage="P" /><ValueElement Value="627" DisplayName="Soins de suite ou de réadaptation indifférenciés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="141" DisplayName="Réanimation chirurgicale indifférenciée (y compris soins intensifs)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="217" DisplayName="Lutte contre la tuberculose indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="829" DisplayName="Cure thermale en neurologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="316" DisplayName="Autre transplantation d'organe (grêle, poumon, pancréas, multigreffe...)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="235" DisplayName="Soins intensifs de néonatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="302" DisplayName="Chimiothérapie en hématologie et cancérologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="140" DisplayName="Chirurgie nouveau-nés et nourrissons" CodeSystem="HL70069" Usage="P" /><ValueElement Value="406" DisplayName="Pôle spécialisé d'urgence en traumatologie (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="112" DisplayName="Néonatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="136" DisplayName="Médecine nucléaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="168" DisplayName="Repos, convalescence et régime indifférenciés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="647" DisplayName="Assistance ventilatoire endotrachéale (insuffisants respiratoires)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="797" DisplayName="Hémodialyse et hémofiltration pour chroniques adultes" CodeSystem="HL70069" Usage="P" /><ValueElement Value="35" DisplayName="Scanographie X" CodeSystem="HL70069" Usage="P" /><ValueElement Value="109" DisplayName="Pédiatrie enfants et adolescents" CodeSystem="HL70069" Usage="P" /><ValueElement Value="111" DisplayName="Pédiatrie nourrissons" CodeSystem="HL70069" Usage="P" /><ValueElement Value="358" DisplayName="Soins à domicile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="220" DisplayName="Lutte contre la tuberculose extra-pulmonaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="269" DisplayName="Soins de type foyer à double tarification pour adultes handicapés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="588" DisplayName="Soins courants en établissement d'hébergement pour personnes âgées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="107" DisplayName="Surveillance continue polyvalente (médicale + chirurgicale, non compris soins intensifs)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="149" DisplayName="Chirurgie vasculaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="734" DisplayName="Réanimation chirurgicale pédiatrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="138" DisplayName="Chirurgie infantile indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="137" DisplayName="Chirurgie générale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="604" DisplayName="Cure médicale non spécialisée pour enfants (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="312" DisplayName="Néphrologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="556" DisplayName="Dialyse péritonéale continue" CodeSystem="HL70069" Usage="P" /><ValueElement Value="625" DisplayName="Autre cure médicale spécialisée pour enfants (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="403" DisplayName="Pôle spécialisé d'urgence en pédiatrie (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="164" DisplayName="Gynécologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="230" DisplayName="Psychiatrie générale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="169" DisplayName="Repos" CodeSystem="HL70069" Usage="P" /><ValueElement Value="623" DisplayName="Cure médicale pour enfants énurétiques (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="648" DisplayName="Trachéotomie isolée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="221" DisplayName="Cure et repos en préventorium" CodeSystem="HL70069" Usage="P" /><ValueElement Value="323" DisplayName="Action médico-sociale précoce pour enfants déficients moteurs" CodeSystem="HL70069" Usage="P" /><ValueElement Value="131" DisplayName="Pneumologie non tuberculeuse" CodeSystem="HL70069" Usage="P" /><ValueElement Value="163" DisplayName="Gynécologie, obstétrique indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="119" DisplayName="Endocrinologie, diabétologie, nutrition et métabolisme indifférenciés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="613" DisplayName="Cure médicale pour enfants diabétiques (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="236" DisplayName="Psychiatrie infanto-juvénile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="594" DisplayName="Repos prénatal" CodeSystem="HL70069" Usage="P" /><ValueElement Value="607" DisplayName="Cure thermale pour enfants (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="807" DisplayName="Atelier thérapeutique pour adolescents" CodeSystem="HL70069" Usage="P" /><ValueElement Value="153" DisplayName="Orthopédie-traumatologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="252" DisplayName="Pouponnière à caractère sanitaire (hébergement et soins en ...)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="152" DisplayName="Orthopédie-traumatologie et chirurgie plastique et réparatrice indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="644" DisplayName="Neutronthérapie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="166" DisplayName="Chroniques et convalescents indifférenciés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="115" DisplayName="Allergologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="631" DisplayName="Gynécologie chirurgicale" CodeSystem="HL70069" Usage="P" /><ValueElement Value="267" DisplayName="Action médico-sociale précoce pour enfants polyhandicapés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="404" DisplayName="Pôle spécialisé d'urgence en ophtalmologie (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="753" DisplayName="Imagerie par résonance magnétique (IRM)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="43" DisplayName="Curiethérapie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="638" DisplayName="Surveillance continue en pédiatrie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="401" DisplayName="Unité de proximité d'accueil, de traitement et d'orientation des urgences (UPATOU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="737" DisplayName="Convalescence et réadaptation" CodeSystem="HL70069" Usage="P" /><ValueElement Value="554" DisplayName="Entraînement à la dialyse péritonéale continue" CodeSystem="HL70069" Usage="P" /><ValueElement Value="171" DisplayName="Régime" CodeSystem="HL70069" Usage="P" /><ValueElement Value="76" DisplayName="Immunologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="664" DisplayName="Nutrition parentérale pour adultes" CodeSystem="HL70069" Usage="P" /><ValueElement Value="322" DisplayName="Action médico-sociale précoce pour enfants déficients visuels" CodeSystem="HL70069" Usage="P" /><ValueElement Value="615" DisplayName="Cure médicale pour enfants épileptiques (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="462" DisplayName="Autre cure médicale spécialisée pour enfants (notamment aérium reclassé)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="803" DisplayName="Psychiatrie pour arriérés profonds" CodeSystem="HL70069" Usage="P" /><ValueElement Value="557" DisplayName="ORL et stomatologie indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="593" DisplayName="Accueil de l'enfant accompagnant la mère convalescente" CodeSystem="HL70069" Usage="P" /><ValueElement Value="398" DisplayName="Placement familial spécialisé pour handicapés adultes" CodeSystem="HL70069" Usage="P" /><ValueElement Value="147" DisplayName="Chirurgie thoracique et cardiovasculaire indifférenciée" CodeSystem="HL70069" Usage="P" /><ValueElement Value="154" DisplayName="Chirurgie plastique et réparatrice" CodeSystem="HL70069" Usage="P" /><ValueElement Value="165" DisplayName="Obstétrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="144" DisplayName="Chirurgie carcinologique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="184" DisplayName="Rééducation des affections hépato-digestives" CodeSystem="HL70069" Usage="P" /><ValueElement Value="198" DisplayName="Lutte contre le cancer (activité des Centres régionaux de lutte contre le cancer [CRLC])" CodeSystem="HL70069" Usage="P" /><ValueElement Value="122" DisplayName="Nutrition-métabolisme" CodeSystem="HL70069" Usage="P" /><ValueElement Value="628" DisplayName="Orthopédie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="621" DisplayName="Cure médicale pour enfants atteints d'infirmités orthopédiques (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="114" DisplayName="Spécialités médicales indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="318" DisplayName="Action médico-sociale précoce pour tous types de déficiences S.A.I. (sans autre indication)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="224" DisplayName="Observation et traitement des pneumoconioses" CodeSystem="HL70069" Usage="P" /><ValueElement Value="830" DisplayName="Cure thermale pour affections psychosomatiques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="408" DisplayName="Pôle spécialisé d'urgence en neurochirurgie (POSU)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="305" DisplayName="Transplantations rénales" CodeSystem="HL70069" Usage="P" /><ValueElement Value="715" DisplayName="Surveillance par monitorage en vue de prévenir la mort subite et inexpliquée du nourrisson" CodeSystem="HL70069" Usage="P" /><ValueElement Value="827" DisplayName="Nutrition entérale à domicile" CodeSystem="HL70069" Usage="P" /><ValueElement Value="120" DisplayName="Endocrinologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="172" DisplayName="Rééducation fonctionnelle et réadaptation polyvalente" CodeSystem="HL70069" Usage="P" /><ValueElement Value="468" DisplayName="Cure médicale spécialisée cardiologique pour tous âges" CodeSystem="HL70069" Usage="P" /><ValueElement Value="306" DisplayName="Transplantations cardiaques" CodeSystem="HL70069" Usage="P" /><ValueElement Value="389" DisplayName="Lutte contre la stérilité" CodeSystem="HL70069" Usage="P" /><ValueElement Value="744" DisplayName="Immuno-cancérologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="150" DisplayName="Chirurgie cardio-vasculaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="624" DisplayName="Autre cure médicale spécialisée pour enfants (MECS ouverte en permanence)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="719" DisplayName="Soins hautement spécialisés en gynécologie-obstétrique" CodeSystem="HL70069" Usage="P" /><ValueElement Value="162" DisplayName="ORL, ophtalmologie et stomatologie indifférenciées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="619" DisplayName="Cure médicale pour enfants hémophiles (MECS ouverte de façon temporaire)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="263" DisplayName="Placement familial sanitaire" CodeSystem="HL70069" Usage="P" /><ValueElement Value="640" DisplayName="Surveillance continue en urologie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="145" DisplayName="Chirurgie des grands brûlés" CodeSystem="HL70069" Usage="P" /><ValueElement Value="183" DisplayName="Obstétrique sans possibilités chirurgicales" CodeSystem="HL70069" Usage="P" /><ValueElement Value="800" DisplayName="Assistance ventilatoire par pression positive continue ou autres techniques particulières agréées (insuffisants respiratoires)" CodeSystem="HL70069" Usage="P" /><ValueElement Value="177" DisplayName="Cure médicale en établissement d'hébergement pour personnes âgées" CodeSystem="HL70069" Usage="P" /><ValueElement Value="718" DisplayName="Soins hautement spécialisés en chirurgie" CodeSystem="HL70069" Usage="P" /><ValueElement Value="104" DisplayName="Réanimation médicale (y compris soins intensifs)" CodeSystem="HL70069" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70201_FR" Name="Telecommunication use code" Description="Telecommunication use code" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ORN" DisplayName="Other Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="ASN" DisplayName="Answering Service Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="BPN" DisplayName="Beeper Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="VHN" DisplayName="Vacation Home Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="NET" DisplayName="Network (email) Address" CodeSystem="HL70201" Usage="P" /><ValueElement Value="EMR" DisplayName="Emergency Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="PRN" DisplayName="Primary Residence Number" CodeSystem="HL70201" Usage="P" /><ValueElement Value="WPN" DisplayName="Work Number" CodeSystem="HL70201" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70396_CI-SIS_2-x" Name="Coding System" Description="Coding System" Version="2.x" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="HL70131" DisplayName="Contact Role " CodeSystem="HL70396" /><ValueElement Value="HL70288" DisplayName="Census Tract " CodeSystem="HL70396" /><ValueElement Value="HL70491" DisplayName="Specimen Quality " CodeSystem="HL70396" /><ValueElement Value="HL70433" DisplayName="Precaution Code " CodeSystem="HL70396" /><ValueElement Value="HL70503" DisplayName="Sequence/Results Flag " CodeSystem="HL70396" /><ValueElement Value="HL70451" DisplayName="Substance Identifier " CodeSystem="HL70396" /><ValueElement Value="SNT" DisplayName="SNOMED topology codes (anatomic sites)" CodeSystem="HL70396" /><ValueElement Value="HL70243" DisplayName="Identity May Be Divulged " CodeSystem="HL70396" /><ValueElement Value="CD2" DisplayName="CDT-2 Codes" CodeSystem="HL70396" /><ValueElement Value="HIBUDI" DisplayName="HIBCC Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70572" DisplayName="Provider Tax Status " CodeSystem="HL70396" /><ValueElement Value="HL70263" DisplayName="Level Of Care " CodeSystem="HL70396" /><ValueElement Value="HL70239" DisplayName="Event Expected " CodeSystem="HL70396" /><ValueElement Value="HL70557" DisplayName="Payee Type " CodeSystem="HL70396" /><ValueElement Value="HL70283" DisplayName="Referral Status " CodeSystem="HL70396" /><ValueElement Value="HL70257" DisplayName="Nature Of Challenge " CodeSystem="HL70396" /><ValueElement Value="HL70942" DisplayName="Equipment State Indicator Type Code" CodeSystem="HL70396" /><ValueElement Value="HL70927" DisplayName="Arm Stick " CodeSystem="HL70396" /><ValueElement Value="E7" DisplayName="Euclides Lab equipment codes" CodeSystem="HL70396" /><ValueElement Value="HL70470" DisplayName="Reimbursement Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70219" DisplayName="Recurring Service Code " CodeSystem="HL70396" /><ValueElement Value="HL70556" DisplayName="Benefit Group " CodeSystem="HL70396" /><ValueElement Value="HL70543" DisplayName="Specimen Collection Site " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2012" DisplayName="ICD 10 Germany v2012" CodeSystem="HL70396" /><ValueElement Value="HL70472" DisplayName="TQ Conjunction ID " CodeSystem="HL70396" /><ValueElement Value="HL70558" DisplayName="Payee Relationship To Invoice " CodeSystem="HL70396" /><ValueElement Value="Medgen-Dis" DisplayName="NCBI MedGen disease subset" CodeSystem="HL70396" /><ValueElement Value="HL70323" DisplayName="Action Code" CodeSystem="HL70396" /><ValueElement Value="HL70048" DisplayName="What Subject Filter" CodeSystem="HL70396" /><ValueElement Value="ensembl-G" DisplayName="Ensembl genomic reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70285" DisplayName="Insurance Company ID Codes " CodeSystem="HL70396" /><ValueElement Value="HL70424" DisplayName="Gestation Category Code " CodeSystem="HL70396" /><ValueElement Value="HL70454" DisplayName="Health Care Provider Area Of Specialization " CodeSystem="HL70396" /><ValueElement Value="HL70136" DisplayName="Yes/No Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70230" DisplayName="Procedure Functional Type " CodeSystem="HL70396" /><ValueElement Value="HL70950" DisplayName="Order Status Modifier" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2016" DisplayName="ICD 10 Germany v2016" CodeSystem="HL70396" /><ValueElement Value="HL70473" DisplayName="Formulary Status " CodeSystem="HL70396" /><ValueElement Value="HL70616" DisplayName="Address Expiration Reason " CodeSystem="HL70396" /><ValueElement Value="HL70763" DisplayName="DRG Procedure Relevance " CodeSystem="HL70396" /><ValueElement Value="JJ1017" DisplayName="Japanese Image Examination Cache" CodeSystem="HL70396" /><ValueElement Value="HL70465" DisplayName="Name/Address Representation " CodeSystem="HL70396" /><ValueElement Value="HL70534" DisplayName="Notify Clergy Code" CodeSystem="HL70396" /><ValueElement Value="HL70252" DisplayName="Causality Observations " CodeSystem="HL70396" /><ValueElement Value="HL70008" DisplayName="Acknowledgment Code " CodeSystem="HL70396" /><ValueElement Value="HL70462" DisplayName="Location Cost Center " CodeSystem="HL70396" /><ValueElement Value="HL70495" DisplayName="Body Site Modifier " CodeSystem="HL70396" /><ValueElement Value="ENTITYCODE" DisplayName="Entity Code" CodeSystem="HL70396" /><ValueElement Value="expandedYes-NoIndicator" DisplayName="null" CodeSystem="HL70396" /><ValueElement Value="HL70913" DisplayName="ISO-4217 Monetary Denomination Code " CodeSystem="HL70396" /><ValueElement Value="HL70055" DisplayName="Diagnosis Related Group " CodeSystem="HL70396" /><ValueElement Value="UML" DisplayName="Unified Medical Language" CodeSystem="HL70396" /><ValueElement Value="GMDC2006" DisplayName="German Major v2006 Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="HL70224" DisplayName="Transport Arranged " CodeSystem="HL70396" /><ValueElement Value="HL70359" DisplayName="Diagnosis Priority " CodeSystem="HL70396" /><ValueElement Value="HL70050" DisplayName="Accident Code " CodeSystem="HL70396" /><ValueElement Value="HL70490" DisplayName="Specimen Reject Reason " CodeSystem="HL70396" /><ValueElement Value="I10G2004" DisplayName="ICD 10 Germany 2004" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2011" DisplayName="German Alpha-ID v2011" CodeSystem="HL70396" /><ValueElement Value="HL70793" DisplayName="Ruling Act " CodeSystem="HL70396" /><ValueElement Value="HL70932" DisplayName="Donation Duration Units " CodeSystem="HL70396" /><ValueElement Value="HL70333" DisplayName="Driver’S License Issuing Authority " CodeSystem="HL70396" /><ValueElement Value="HL70272" DisplayName="Document Confidentiality Status " CodeSystem="HL70396" /><ValueElement Value="ICF" DisplayName="International Classification of Functioning, Disability and Health (ICF)" CodeSystem="HL70396" /><ValueElement Value="HL70353" DisplayName="CWE Statuses " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2006" DisplayName="German Alpha-ID v2006" CodeSystem="HL70396" /><ValueElement Value="HL70455" DisplayName="Type Of Bill Code " CodeSystem="HL70396" /><ValueElement Value="HL70363" DisplayName="Assigning Authority " CodeSystem="HL70396" /><ValueElement Value="LN" DisplayName="Logical Observation Identifier Names and Codes (LOINC®)" CodeSystem="HL70396" /><ValueElement Value="HL70406" DisplayName="Organization Unit Type " CodeSystem="HL70396" /><ValueElement Value="HL70308" DisplayName="Floor " CodeSystem="HL70396" /><ValueElement Value="HL70215" DisplayName="Publicity Code " CodeSystem="HL70396" /><ValueElement Value="HL70416" DisplayName="Procedure DRG Type " CodeSystem="HL70396" /><ValueElement Value="GDRG2009" DisplayName="G-DRG German DRG Codes v2008" CodeSystem="HL70396" /><ValueElement Value="HL70002" DisplayName="Marital Status" CodeSystem="HL70396" /><ValueElement Value="HL70519" DisplayName="Override Reason " CodeSystem="HL70396" /><ValueElement Value="HL70171" DisplayName="Citizenship " CodeSystem="HL70396" /><ValueElement Value="HL70208" DisplayName="Query Response Status " CodeSystem="HL70396" /><ValueElement Value="HL70413" DisplayName="Consent Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70836" DisplayName="Problem Severity " CodeSystem="HL70396" /><ValueElement Value="DMPERRORCODE" DisplayName="Code d'erreurs DMP" CodeSystem="HL70396" /><ValueElement Value="ENTITYHDLG" DisplayName="Entity Handling Code" CodeSystem="HL70396" /><ValueElement Value="HL70247" DisplayName="Status Of Evaluation " CodeSystem="HL70396" /><ValueElement Value="HL70946" DisplayName="Supplier Type" CodeSystem="HL70396" /><ValueElement Value="HL70218" DisplayName="Patient Charge Adjustment " CodeSystem="HL70396" /><ValueElement Value="CLP" DisplayName="CLIP" CodeSystem="HL70396" /><ValueElement Value="E" DisplayName="EUCLIDES" CodeSystem="HL70396" /><ValueElement Value="HL70322" DisplayName="Completion Status " CodeSystem="HL70396" /><ValueElement Value="I10P" DisplayName="International Classification of Diseases, 10th Revision, Procedure Coding System (ICD-10-PCS)" CodeSystem="HL70396" /><ValueElement Value="HL70448" DisplayName="Name Context " CodeSystem="HL70396" /><ValueElement Value="AMTv2" DisplayName="Australian Medicines Terminology (v2)" CodeSystem="HL70396" /><ValueElement Value="NIP002" DisplayName="Substance refusal reason" CodeSystem="HL70396" /><ValueElement Value="HL70174" DisplayName="Nature Of Service/Test/Observation " CodeSystem="HL70396" /><ValueElement Value="HL70089" DisplayName="Procedure Coding Method" CodeSystem="HL70396" /><ValueElement Value="O3012004" DisplayName="OPS Germany 2004" CodeSystem="HL70396" /><ValueElement Value="HL70141" DisplayName="Military Rank/Grade " CodeSystem="HL70396" /><ValueElement Value="MEDC" DisplayName="Medical Economics Drug Codes" CodeSystem="HL70396" /><ValueElement Value="RxT-Ingrd" DisplayName="RxTerms-Ingredients Subset" CodeSystem="HL70396" /><ValueElement Value="HL70340" DisplayName="Procedure Code Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70049" DisplayName="Department Code " CodeSystem="HL70396" /><ValueElement Value="HL70952" DisplayName="Confidentiality Classification" CodeSystem="HL70396" /><ValueElement Value="HL70127" DisplayName="Allergen Type" CodeSystem="HL70396" /><ValueElement Value="HL70032" DisplayName="Charge Price Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70373" DisplayName="Treatment" CodeSystem="HL70396" /><ValueElement Value="HL70482" DisplayName="Order Type " CodeSystem="HL70396" /><ValueElement Value="I10G2006" DisplayName="ICD 10 Germany 2006" CodeSystem="HL70396" /><ValueElement Value="OBSMETHOD" DisplayName="Observation Method Code" CodeSystem="HL70396" /><ValueElement Value="HL70183" DisplayName="Active/Inactive " CodeSystem="HL70396" /><ValueElement Value="HL70492" DisplayName="Specimen Appropriateness " CodeSystem="HL70396" /><ValueElement Value="HL70521" DisplayName="Override Code " CodeSystem="HL70396" /><ValueElement Value="HL70467" DisplayName="Modifier Edit Code " CodeSystem="HL70396" /><ValueElement Value="HL70514" DisplayName="Transfusion Adverse Reaction " CodeSystem="HL70396" /><ValueElement Value="HL70389" DisplayName="Analyte Repeat Status " CodeSystem="HL70396" /><ValueElement Value="HL70376" DisplayName="Special Handling Code " CodeSystem="HL70396" /><ValueElement Value="HL70084" DisplayName="Performed By " CodeSystem="HL70396" /><ValueElement Value="HL70945" DisplayName="Auto-Dilution Type" CodeSystem="HL70396" /><ValueElement Value="HL70445" DisplayName="Identity Reliability Code " CodeSystem="HL70396" /><ValueElement Value="UB04FL67" DisplayName="Present on Admission" CodeSystem="HL70396" /><ValueElement Value="HL70537" DisplayName="Institution " CodeSystem="HL70396" /><ValueElement Value="GMDC2009" DisplayName="German Major Diagnostic Codes v2009" CodeSystem="HL70396" /><ValueElement Value="HL70912" DisplayName="Participation" CodeSystem="HL70396" /><ValueElement Value="HL70311" DisplayName="Job Status " CodeSystem="HL70396" /><ValueElement Value="HL70369" DisplayName="Specimen Role " CodeSystem="HL70396" /><ValueElement Value="HL70258" DisplayName="Relationship Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70395" DisplayName="Modify Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70383" DisplayName="Substance Status " CodeSystem="HL70396" /><ValueElement Value="HL70941" DisplayName="Procedure Code " CodeSystem="HL70396" /><ValueElement Value="HL70341" DisplayName="Guarantor Credit Rating Code " CodeSystem="HL70396" /><ValueElement Value="HL70012" DisplayName="Stock Location" CodeSystem="HL70396" /><ValueElement Value="HL70494" DisplayName="Specimen Child Role " CodeSystem="HL70396" /><ValueElement Value="HL70241" DisplayName="Patient Outcome " CodeSystem="HL70396" /><ValueElement Value="SNM3" DisplayName="SNOMED International" CodeSystem="HL70396" /><ValueElement Value="HL70379" DisplayName="Tray Type " CodeSystem="HL70396" /><ValueElement Value="HL70921" DisplayName="Certification Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70501" DisplayName="Consent Non-Disclosure Reason " CodeSystem="HL70396" /><ValueElement Value="HL70129" DisplayName="Accommodation Code " CodeSystem="HL70396" /><ValueElement Value="HL70233" DisplayName="Non-Concur Code/Description " CodeSystem="HL70396" /><ValueElement Value="HL70021" DisplayName="Bad Debt Agency Code " CodeSystem="HL70396" /><ValueElement Value="ISCN" DisplayName="International System for Human Cytogenetic Nomenclature (ISCN)" CodeSystem="HL70396" /><ValueElement Value="HL70498" DisplayName="Consent Status " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2007" DisplayName="ICD 10 Germany v2007" CodeSystem="HL70396" /><ValueElement Value="X12Dennnn" DisplayName="ASC X12 Code List nnnn" CodeSystem="HL70396" CodePattern="X12De.+" /><ValueElement Value="HL70156" DisplayName="Which Date/Time Qualifier" CodeSystem="HL70396" /><ValueElement Value="HL70466" DisplayName="Ambulatory Payment Classification Code " CodeSystem="HL70396" /><ValueElement Value="HL70201" DisplayName="Telecommunication Use Code " CodeSystem="HL70396" /><ValueElement Value="HL70063" DisplayName="Relationship " CodeSystem="HL70396" /><ValueElement Value="HL70260" DisplayName="Patient Location Type " CodeSystem="HL70396" /><ValueElement Value="HL70925" DisplayName="Phlebotomy Issue " CodeSystem="HL70396" /><ValueElement Value="HL70005" DisplayName="Race " CodeSystem="HL70396" /><ValueElement Value="HL70296" DisplayName="Primary Language " CodeSystem="HL70396" /><ValueElement Value="HL70191" DisplayName="Type Of Referenced Data " CodeSystem="HL70396" /><ValueElement Value="HL70518" DisplayName="Override Type " CodeSystem="HL70396" /><ValueElement Value="HL70915" DisplayName="Process Control Code " CodeSystem="HL70396" /><ValueElement Value="99zzz" DisplayName="Local general code for a site-defined code system used for a specific set of trading partners. The 'zzz' SHALL be any printable ASCII string. Length of the name SHALL not exceed field width, and is subject to local implementation." CodeSystem="HL70396" CodePattern="99.+" /><ValueElement Value="HL70292" DisplayName="Vaccines Administered (Code = CVX) " CodeSystem="HL70396" /><ValueElement Value="ICS" DisplayName="ICCS" CodeSystem="HL70396" /><ValueElement Value="HL70943" DisplayName="Transport Destination" CodeSystem="HL70396" /><ValueElement Value="HL70811" DisplayName="Maintenance Type " CodeSystem="HL70396" /><ValueElement Value="HL70098" DisplayName="Type Of Agreement " CodeSystem="HL70396" /><ValueElement Value="CDCM" DisplayName="CDC Methods/Instruments Codes" CodeSystem="HL70396" /><ValueElement Value="HL70172" DisplayName="Veterans Military Status " CodeSystem="HL70396" /><ValueElement Value="HL70949" DisplayName="Order Control Code Reason" CodeSystem="HL70396" /><ValueElement Value="HL70151" DisplayName="Second Opinion Status " CodeSystem="HL70396" /><ValueElement Value="HL70906" DisplayName="Shipment Priority " CodeSystem="HL70396" /><ValueElement Value="HL70182" DisplayName="Staff Type " CodeSystem="HL70396" /><ValueElement Value="HL70167" DisplayName="Substitution Status " CodeSystem="HL70396" /><ValueElement Value="HL70059" DisplayName="Consent Code " CodeSystem="HL70396" /><ValueElement Value="HL70142" DisplayName="Military Status " CodeSystem="HL70396" /><ValueElement Value="HL70070" DisplayName="Specimen Source Codes" CodeSystem="HL70396" /><ValueElement Value="HL70347" DisplayName="State/Province " CodeSystem="HL70396" /><ValueElement Value="HL70248" DisplayName="Product Source " CodeSystem="HL70396" /><ValueElement Value="IHELAW" DisplayName="IHE Laboratory Analytical Workflow (LAW) Profile Codes." CodeSystem="HL70396" /><ValueElement Value="HL70010" DisplayName="Physician ID " CodeSystem="HL70396" /><ValueElement Value="HL70778" DisplayName="Item Type " CodeSystem="HL70396" /><ValueElement Value="HL70235" DisplayName="Report Source " CodeSystem="HL70396" /><ValueElement Value="HL70072" DisplayName="Insurance Plan ID " CodeSystem="HL70396" /><ValueElement Value="HL70739" DisplayName="DRG Status Patient " CodeSystem="HL70396" /><ValueElement Value="ICCUDI" DisplayName="ICCBBA Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70100" DisplayName="Invocation Event " CodeSystem="HL70396" /><ValueElement Value="HL70176" DisplayName="Master File Application Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70667" DisplayName="Device Data State " CodeSystem="HL70396" /><ValueElement Value="HL70189" DisplayName="Ethnic Group " CodeSystem="HL70396" /><ValueElement Value="HL70165" DisplayName="Administration Method " CodeSystem="HL70396" /><ValueElement Value="HL70452" DisplayName="Health Care Provider Type Code " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2015" DisplayName="German Alpha-ID v2015" CodeSystem="HL70396" /><ValueElement Value="HOT" DisplayName="Japanese Nationwide Medicine Code" CodeSystem="HL70396" /><ValueElement Value="CPTM" DisplayName="CPT Modifier Code" CodeSystem="HL70396" /><ValueElement Value="HL70225" DisplayName="Escort Required " CodeSystem="HL70396" /><ValueElement Value="HL70944" DisplayName="Transport Route" CodeSystem="HL70396" /><ValueElement Value="HL70960" DisplayName="Data Absent Reason" CodeSystem="HL70396" /><ValueElement Value="HL70372" DisplayName="Specimen Component " CodeSystem="HL70396" /><ValueElement Value="HL70118" DisplayName="Major Diagnostic Category " CodeSystem="HL70396" /><ValueElement Value="HL70436" DisplayName="Sensitivity To Causative Agent Code " CodeSystem="HL70396" /><ValueElement Value="HL70480" DisplayName="Pharmacy Order Types " CodeSystem="HL70396" /><ValueElement Value="HL70297" DisplayName="CN ID Source " CodeSystem="HL70396" /><ValueElement Value="HL70366" DisplayName="Local/Remote Control State " CodeSystem="HL70396" /><ValueElement Value="HL70493" DisplayName="Specimen Condition " CodeSystem="HL70396" /><ValueElement Value="HL70103" DisplayName="Processing ID " CodeSystem="HL70396" /><ValueElement Value="HL70179" DisplayName="Response Level " CodeSystem="HL70396" /><ValueElement Value="HL70387" DisplayName="Command Response " CodeSystem="HL70396" /><ValueElement Value="HL70571" DisplayName="Invoice Processing Results Status " CodeSystem="HL70396" /><ValueElement Value="HL70027" DisplayName="Priority " CodeSystem="HL70396" /><ValueElement Value="W2" DisplayName="WHO record # drug codes (8 digit)" CodeSystem="HL70396" /><ValueElement Value="HL70268" DisplayName="Override " CodeSystem="HL70396" /><ValueElement Value="HL74000" DisplayName="Name/Address Representation" CodeSystem="HL70396" /><ValueElement Value="HL70291" DisplayName="Subtype Of Referenced Data " CodeSystem="HL70396" /><ValueElement Value="HL70380" DisplayName="Separator Type " CodeSystem="HL70396" /><ValueElement Value="HL70540" DisplayName="Inactive Reason Code " CodeSystem="HL70396" /><ValueElement Value="ensembl-T" DisplayName="Ensembl transcript reference sequence" CodeSystem="HL70396" /><ValueElement Value="HL70919" DisplayName="Exclusive Test " CodeSystem="HL70396" /><ValueElement Value="HL70307" DisplayName="Building " CodeSystem="HL70396" /><ValueElement Value="HL70144" DisplayName="Eligibility Source " CodeSystem="HL70396" /><ValueElement Value="HL70217" DisplayName="Visit Priority Code " CodeSystem="HL70396" /><ValueElement Value="HL70914" DisplayName="Root Cause " CodeSystem="HL70396" /><ValueElement Value="HL70306" DisplayName="Location Status " CodeSystem="HL70396" /><ValueElement Value="HL70483" DisplayName="Authorization Mode " CodeSystem="HL70396" /><ValueElement Value="HL70270" DisplayName="Document Type " CodeSystem="HL70396" /><ValueElement Value="HL70570" DisplayName="Payment Method Code " CodeSystem="HL70396" /><ValueElement Value="HL70377" DisplayName="Other Environmental Factors " CodeSystem="HL70396" /><ValueElement Value="MCD" DisplayName="Medicaid" CodeSystem="HL70396" /><ValueElement Value="HL70818" DisplayName="Package " CodeSystem="HL70396" /><ValueElement Value="I10G2005" DisplayName="ICD 10 Germany 2005" CodeSystem="HL70396" /><ValueElement Value="HL70300" DisplayName="Namespace ID " CodeSystem="HL70396" /><ValueElement Value="HL70317" DisplayName="Annotations " CodeSystem="HL70396" /><ValueElement Value="HL70349" DisplayName="PSRO/UR Approval Indicator" CodeSystem="HL70396" /><ValueElement Value="HL70216" DisplayName="Patient Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70909" DisplayName="Patient Results Release Categorization Scheme" CodeSystem="HL70396" /><ValueElement Value="HL70529" DisplayName="Precision" CodeSystem="HL70396" /><ValueElement Value="HL70181" DisplayName="MFN Record-Level Error Return " CodeSystem="HL70396" /><ValueElement Value="EDLEVEL" DisplayName="Education Level" CodeSystem="HL70396" /><ValueElement Value="UB04FL14" DisplayName="Priority (Type) of Visit" CodeSystem="HL70396" /><ValueElement Value="OPS2010" DisplayName="OPS Germany v2010" CodeSystem="HL70396" /><ValueElement Value="HL70702" DisplayName="Cycle Type " CodeSystem="HL70396" /><ValueElement Value="HL70411" DisplayName="Supplemental Service Information Values " CodeSystem="HL70396" /><ValueElement Value="HL70908" DisplayName="Package Type " CodeSystem="HL70396" /><ValueElement Value="HL70838" DisplayName="Problem Perspective " CodeSystem="HL70396" /><ValueElement Value="HL70188" DisplayName="Operator ID " CodeSystem="HL70396" /><ValueElement Value="HL70007" DisplayName="Admission Type " CodeSystem="HL70396" /><ValueElement Value="HL70437" DisplayName="Alert Device Code " CodeSystem="HL70396" /><ValueElement Value="OPS2012" DisplayName="OPS Germany v2012" CodeSystem="HL70396" /><ValueElement Value="HL70771" DisplayName="Resource Type Or Category " CodeSystem="HL70396" /><ValueElement Value="NIP001" DisplayName="Source of Information (Immunization)" CodeSystem="HL70396" /><ValueElement Value="HL70728" DisplayName="CCL Value " CodeSystem="HL70396" /><ValueElement Value="HL70443" DisplayName="Provider Role " CodeSystem="HL70396" /><ValueElement Value="FDDC" DisplayName="First DataBank Drug Codes" CodeSystem="HL70396" /><ValueElement Value="PRTCPTNMODE" DisplayName="Paticipation Mode Code" CodeSystem="HL70396" /><ValueElement Value="HL70499" DisplayName="Consent Bypass Reason " CodeSystem="HL70396" /><ValueElement Value="HL70917" DisplayName="Bolus Type " CodeSystem="HL70396" /><ValueElement Value="HL70415" DisplayName="DRG Transfer Type " CodeSystem="HL70396" /><ValueElement Value="HL70564" DisplayName="Adjustment Category Code " CodeSystem="HL70396" /><ValueElement Value="CMSOEC" DisplayName="OCE Edit Code" CodeSystem="HL70396" /><ValueElement Value="MEDIATYPE" DisplayName="MIME Media Type IANA" CodeSystem="HL70396" /><ValueElement Value="HL70242" DisplayName="Primary Observer's Qualification " CodeSystem="HL70396" /><ValueElement Value="HL70321" DisplayName="Dispense Method " CodeSystem="HL70396" /><ValueElement Value="HL70139" DisplayName="Employer Information Data " CodeSystem="HL70396" /><ValueElement Value="NIP008" DisplayName="Vaccine purchased with (Type of funding)" CodeSystem="HL70396" /><ValueElement Value="HL70080" DisplayName="Nature Of Abnormal Testing " CodeSystem="HL70396" /><ValueElement Value="HL70264" DisplayName="Location Department " CodeSystem="HL70396" /><ValueElement Value="HL70019" DisplayName="Anesthesia Code " CodeSystem="HL70396" /><ValueElement Value="TRE_A05" DisplayName="JDV_J07-XdsTypeCode-CISIS" CodeSystem="HL70396" /><ValueElement Value="HL70332" DisplayName="Source Type " CodeSystem="HL70396" /><ValueElement Value="HL70398" DisplayName="Continuation Style Code " CodeSystem="HL70396" /><ValueElement Value="HL70566" DisplayName="Blood Unit Type " CodeSystem="HL70396" /><ValueElement Value="HL70971" DisplayName="Online Verification Result Error Code" CodeSystem="HL70396" /><ValueElement Value="I10P0" DisplayName="ICD-10 Place of Occurrence" CodeSystem="HL70396" /><ValueElement Value="HL70924" DisplayName="Cumulative Dosage Limit UoM " CodeSystem="HL70396" /><ValueElement Value="CDCOBS" DisplayName="CDC BioSense RT observations (Census) - CDC" CodeSystem="HL70396" /><ValueElement Value="HL70298" DisplayName="CP Range Type " CodeSystem="HL70396" /><ValueElement Value="HL70547" DisplayName="Jurisdictional Breadth " CodeSystem="HL70396" /><ValueElement Value="HL70525" DisplayName="Privilege " CodeSystem="HL70396" /><ValueElement Value="HL70250" DisplayName="Relatedness Assessment " CodeSystem="HL70396" /><ValueElement Value="COSMIC-Smpl" DisplayName="COSMIC – Simple variants" CodeSystem="HL70396" /><ValueElement Value="HL70757" DisplayName="Status Respiration Minutes " CodeSystem="HL70396" /><ValueElement Value="HL70068" DisplayName="Guarantor Type " CodeSystem="HL70396" /><ValueElement Value="HL70102" DisplayName="Delayed Acknowledgment Type" CodeSystem="HL70396" /><ValueElement Value="HL70153" DisplayName="Value Code " CodeSystem="HL70396" /><ValueElement Value="HL70294" DisplayName="Time Selection Criteria Parameter Class Codes " CodeSystem="HL70396" /><ValueElement Value="UB04FL17" DisplayName="Patient Discharge Status" CodeSystem="HL70396" /><ValueElement Value="NCPDPnnnnsss" DisplayName="NCPDP code list for data element nnnn [as used in segment sss]" CodeSystem="HL70396" CodePattern="NCPDP.+" /><ValueElement Value="HL70047" DisplayName="Danger Code" CodeSystem="HL70396" /><ValueElement Value="HGNC-Symb" DisplayName="HGNC-symb" CodeSystem="HL70396" /><ValueElement Value="HL70209" DisplayName="Relational Operator " CodeSystem="HL70396" /><ValueElement Value="HL70634" DisplayName="Item Importance Codes " CodeSystem="HL70396" /><ValueElement Value="HL70109" DisplayName="Report Priority" CodeSystem="HL70396" /><ValueElement Value="HL70357" DisplayName="Message Error Condition Codes " CodeSystem="HL70396" /><ValueElement Value="HL70460" DisplayName="Denial Or Rejection Code " CodeSystem="HL70396" /><ValueElement Value="W1" DisplayName="WHO record # drug codes (6 digit)" CodeSystem="HL70396" /><ValueElement Value="HL70544" DisplayName="Container Condition " CodeSystem="HL70396" /><ValueElement Value="UB04FL39" DisplayName="Value Code" CodeSystem="HL70396" /><ValueElement Value="HL70143" DisplayName="Non-Covered Insurance Code " CodeSystem="HL70396" /><ValueElement Value="HL70267" DisplayName="Days Of The Week " CodeSystem="HL70396" /><ValueElement Value="HL70364" DisplayName="Comment Type " CodeSystem="HL70396" /><ValueElement Value="HL70968" DisplayName="Container Material" CodeSystem="HL70396" /><ValueElement Value="HL70147" DisplayName="Policy Type " CodeSystem="HL70396" /><ValueElement Value="HCPCS" DisplayName="CMS (formerly HCFA) Common Procedure Coding System" CodeSystem="HL70396" /><ValueElement Value="SDM" DisplayName="SNOMED- DICOM Microglossary" CodeSystem="HL70396" /><ValueElement Value="HL70009" DisplayName="Ambulatory Status " CodeSystem="HL70396" /><ValueElement Value="HL70358" DisplayName="Practitioner Group " CodeSystem="HL70396" /><ValueElement Value="HL70554" DisplayName="Invoice Reason Codes " CodeSystem="HL70396" /><ValueElement Value="HL70399" DisplayName="Country Code" CodeSystem="HL70396" /><ValueElement Value="HL70397" DisplayName="Sequencing " CodeSystem="HL70396" /><ValueElement Value="HL70515" DisplayName="Transfusion Interrupted Reason " CodeSystem="HL70396" /><ValueElement Value="UMD" DisplayName="MDNS" CodeSystem="HL70396" /><ValueElement Value="HL70203" DisplayName="Identifier Type " CodeSystem="HL70396" /><ValueElement Value="HL70244" DisplayName="Single Use Device " CodeSystem="HL70396" /><ValueElement Value="IBT0001" DisplayName="ISBT 128 Standard transfusion/transplantation data items" CodeSystem="HL70396" /><ValueElement Value="HL70290" DisplayName="Mime Base64 Encoding Characters" CodeSystem="HL70396" /><ValueElement Value="HL70385" DisplayName="Manufacturer Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70755" DisplayName="DRG Status Weight At Birth " CodeSystem="HL70396" /><ValueElement Value="HL70148" DisplayName="Money Or Percentage Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70393" DisplayName="Match Algorithms " CodeSystem="HL70396" /><ValueElement Value="HL70271" DisplayName="Document Completion Status " CodeSystem="HL70396" /><ValueElement Value="HL70374" DisplayName="System Induced Contaminants" CodeSystem="HL70396" /><ValueElement Value="HL70759" DisplayName="Status Admission " CodeSystem="HL70396" /><ValueElement Value="GDRG2007" DisplayName="G-DRG German DRG Codes v2007" CodeSystem="HL70396" /><ValueElement Value="HL70507" DisplayName="Observation Result Handling " CodeSystem="HL70396" /><ValueElement Value="HL70761" DisplayName="DRG Procedure Determination Status " CodeSystem="HL70396" /><ValueElement Value="HL70511" DisplayName="BP Observation Status Codes Interpretation " CodeSystem="HL70396" /><ValueElement Value="MGPI" DisplayName="Medispan GPI" CodeSystem="HL70396" /><ValueElement Value="HL70742" DisplayName="DRG Status Financial Calculation " CodeSystem="HL70396" /><ValueElement Value="HL70155" DisplayName="Accept/Application Acknowledgment Conditions " CodeSystem="HL70396" /><ValueElement Value="HL70178" DisplayName="File Level Event Code " CodeSystem="HL70396" /><ValueElement Value="ICSD" DisplayName="International Classification of Sleep Disorders" CodeSystem="HL70396" /><ValueElement Value="MVX" DisplayName="CDC Vaccine Manufacturer Codes" CodeSystem="HL70396" /><ValueElement Value="JC8" DisplayName="Japanese Chemistry" CodeSystem="HL70396" /><ValueElement Value="HL70319" DisplayName="Department Cost Center " CodeSystem="HL70396" /><ValueElement Value="ART" DisplayName="WHO Adverse Reaction Terms" CodeSystem="HL70396" /><ValueElement Value="OPS2016" DisplayName="OPS Germany v2016" CodeSystem="HL70396" /><ValueElement Value="messageErrorCondition" DisplayName="null" CodeSystem="HL70396" /><ValueElement Value="HL70382" DisplayName="Drug Interference " CodeSystem="HL70396" /><ValueElement Value="HL70113" DisplayName="Discharged To Location " CodeSystem="HL70396" /><ValueElement Value="HL70370" DisplayName="Container Status " CodeSystem="HL70396" /><ValueElement Value="HL70920" DisplayName="Preferred Specimen/Attribute Status " CodeSystem="HL70396" /><ValueElement Value="UPC" DisplayName="Universal Product Code" CodeSystem="HL70396" /><ValueElement Value="HL70749" DisplayName="DRG Grouping Status " CodeSystem="HL70396" /><ValueElement Value="HL70435" DisplayName="Advance Directive Code " CodeSystem="HL70396" /><ValueElement Value="HL70966" DisplayName="Pricing Tier Level" CodeSystem="HL70396" /><ValueElement Value="C4" DisplayName="CPT-4" CodeSystem="HL70396" /><ValueElement Value="HL70192" DisplayName="Visit ID Type" CodeSystem="HL70396" /><ValueElement Value="HL70159" DisplayName="Diet Code Specification Type " CodeSystem="HL70396" /><ValueElement Value="HL70484" DisplayName="Dispense Type " CodeSystem="HL70396" /><ValueElement Value="CST" DisplayName="COSTART" CodeSystem="HL70396" /><ValueElement Value="IC2" DisplayName="ICHPPC-2" CodeSystem="HL70396" /><ValueElement Value="HL70004" DisplayName="Patient Class " CodeSystem="HL70396" /><ValueElement Value="HL70276" DisplayName="Appointment Reason Codes " CodeSystem="HL70396" /><ValueElement Value="SCT" DisplayName="SNOMED Clinical Terms" CodeSystem="HL70396" /><ValueElement Value="HL70043" DisplayName="Condition Code " CodeSystem="HL70396" /><ValueElement Value="HL70360" DisplayName="Degree/License/Certificate " CodeSystem="HL70396" /><ValueElement Value="HL70164" DisplayName="Administration Device " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2016" DisplayName="German Alpha-ID v2016" CodeSystem="HL70396" /><ValueElement Value="HL70933" DisplayName="Intended Procedure Type " CodeSystem="HL70396" /><ValueElement Value="HL70428" DisplayName="Incident Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70880" DisplayName="Product/Service Code Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70386" DisplayName="Supplier Identifier " CodeSystem="HL70396" /><ValueElement Value="HL70168" DisplayName="Processing Priority " CodeSystem="HL70396" /><ValueElement Value="HL70894" DisplayName="Side Of Body " CodeSystem="HL70396" /><ValueElement Value="HL70090" DisplayName="Procedure Type" CodeSystem="HL70396" /><ValueElement Value="NIC" DisplayName="Nursing Interventions Classification" CodeSystem="HL70396" /><ValueElement Value="HL70114" DisplayName="Diet Type " CodeSystem="HL70396" /><ValueElement Value="HL70112" DisplayName="Discharge Disposition " CodeSystem="HL70396" /><ValueElement Value="FIPS6_4" DisplayName="FIPS 6-4 (County)" CodeSystem="HL70396" /><ValueElement Value="HL70279" DisplayName="Allow Substitutions Code " CodeSystem="HL70396" /><ValueElement Value="DCL" DisplayName="DICOM Class Label" CodeSystem="HL70396" /><ValueElement Value="HL70345" DisplayName="Appeal Reason " CodeSystem="HL70396" /><ValueElement Value="HL70338" DisplayName="Practitioner ID Number Type " CodeSystem="HL70396" /><ValueElement Value="HL70527" DisplayName="Calendar Alignment " CodeSystem="HL70396" /><ValueElement Value="HL70497" DisplayName="Consent Mode " CodeSystem="HL70396" /><ValueElement Value="HL70568" DisplayName="Volume Units " CodeSystem="HL70396" /><ValueElement Value="ROLECLASS" DisplayName="Used initially for contact roles." CodeSystem="HL70396" /><ValueElement Value="ICDO" DisplayName="International Classification of Diseases for Oncology" CodeSystem="HL70396" /><ValueElement Value="X12DEnnnn" DisplayName="ASC X12 Code List nnnn" CodeSystem="HL70396" CodePattern="X12DE.+" /><ValueElement Value="HL70287" DisplayName="Problem/Goal Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70653" DisplayName="Date Format " CodeSystem="HL70396" /><ValueElement Value="HL70227" DisplayName="Manufacturers Of Vaccines " CodeSystem="HL70396" /><ValueElement Value="ATC" DisplayName="American Type Culture Collection" CodeSystem="HL70396" /><ValueElement Value="HL70099" DisplayName="VIP Indicator " CodeSystem="HL70396" /><ValueElement Value="OPS2013" DisplayName="OPS Germany v2013" CodeSystem="HL70396" /><ValueElement Value="HL70458" DisplayName="OCE Edit Code " CodeSystem="HL70396" /><ValueElement Value="HL70149" DisplayName="Day Type " CodeSystem="HL70396" /><ValueElement Value="IUPC" DisplayName="IUPAC/IFCC Component Codes" CodeSystem="HL70396" /><ValueElement Value="HL70553" DisplayName="Invoice Control Code " CodeSystem="HL70396" /><ValueElement Value="HL70432" DisplayName="Admission Level Of Care Code " CodeSystem="HL70396" /><ValueElement Value="HL70060" DisplayName="Error Code" CodeSystem="HL70396" /><ValueElement Value="IUPP" DisplayName="IUPAC/IFCC Property Codes" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2008" DisplayName="German Alpha-ID v2008" CodeSystem="HL70396" /><ValueElement Value="AS4E" DisplayName="AS4 Neurophysiology Codes" CodeSystem="HL70396" /><ValueElement Value="HL70567" DisplayName="Weight Units " CodeSystem="HL70396" /><ValueElement Value="NUBC" DisplayName="National Uniform Billing Committee Code" CodeSystem="HL70396" /><ValueElement Value="HL70211" DisplayName="Alternate Character Sets " CodeSystem="HL70396" /><ValueElement Value="HL70222" DisplayName="Contact Reason " CodeSystem="HL70396" /><ValueElement Value="HL70038" DisplayName="Order Status " CodeSystem="HL70396" /><ValueElement Value="NIP007" DisplayName="Vaccinated at location (facility)" CodeSystem="HL70396" /><ValueElement Value="PLR" DisplayName="CDC PHLIP Lab result codes that are not covered in SNOMED at the time of this implementation" CodeSystem="HL70396" /><ValueElement Value="HL70284" DisplayName="Referral Category " CodeSystem="HL70396" /><ValueElement Value="I10C" DisplayName="International Classification of Diseases, 10th Revision, Clinical Modification (ICD-10-CM)" CodeSystem="HL70396" /><ValueElement Value="HL70017" DisplayName="Transaction Type " CodeSystem="HL70396" /><ValueElement Value="NIP009" DisplayName="Reported adverse event previously" CodeSystem="HL70396" /><ValueElement Value="HL70023" DisplayName="Admit Source " CodeSystem="HL70396" /><ValueElement Value="ENZC" DisplayName="Enzyme Codes" CodeSystem="HL70396" /><ValueElement Value="HL70444" DisplayName="Name Assembly Order " CodeSystem="HL70396" /><ValueElement Value="HL70485" DisplayName="Extended Priority Codes " CodeSystem="HL70396" /><ValueElement Value="ISO+" DisplayName="ISO 2955.83 (units of measure) with HL7 extensions" CodeSystem="HL70396" /><ValueElement Value="HL70085" DisplayName="Observation Result Status Codes Interpretation" CodeSystem="HL70396" /><ValueElement Value="MetaDMPMSS" DisplayName="Codes pour les MétaDMP/MSS" CodeSystem="HL70396" /><ValueElement Value="OPS2009" DisplayName="OPS Germany v2008" CodeSystem="HL70396" /><ValueElement Value="OPS2011" DisplayName="OPS Germany v2011" CodeSystem="HL70396" /><ValueElement Value="HL70548" DisplayName="Signatory’S Relationship To Subject " CodeSystem="HL70396" /><ValueElement Value="applicationErrorCode" DisplayName="null" CodeSystem="HL70396" /><ValueElement Value="HL70401" DisplayName="Government Reimbursement Program " CodeSystem="HL70396" /><ValueElement Value="IBT" DisplayName="ISBT" CodeSystem="HL70396" /><ValueElement Value="NPI" DisplayName="National Provider Identifier" CodeSystem="HL70396" /><ValueElement Value="PHDSCSOPT" DisplayName="Source of Payment Typology" CodeSystem="HL70396" /><ValueElement Value="HL70052" DisplayName="Diagnosis Type " CodeSystem="HL70396" /><ValueElement Value="HL70388" DisplayName="Processing Type " CodeSystem="HL70396" /><ValueElement Value="HL70262" DisplayName="Privacy Level " CodeSystem="HL70396" /><ValueElement Value="HL70157" DisplayName="Which Date/Time Status Qualifier" CodeSystem="HL70396" /><ValueElement Value="ALPHAID2007" DisplayName="German Alpha-ID v2007" CodeSystem="HL70396" /><ValueElement Value="HL70948" DisplayName="Relationship Type" CodeSystem="HL70396" /><ValueElement Value="GMDC2005" DisplayName="German Major Diagnostic Codes v2005" CodeSystem="HL70396" /><ValueElement Value="LB" DisplayName="Local billing code" CodeSystem="HL70396" /><ValueElement Value="HL70193" DisplayName="Amount Class " CodeSystem="HL70396" /><ValueElement Value="HL70327" DisplayName="Job Code " CodeSystem="HL70396" /><ValueElement Value="HL70471" DisplayName="Query Name " CodeSystem="HL70396" /><ValueElement Value="HL70003" DisplayName="Event Type " CodeSystem="HL70396" /><ValueElement Value="HL70305" DisplayName="Person Location Type " CodeSystem="HL70396" /><ValueElement Value="HL70414" DisplayName="Units Of Time " CodeSystem="HL70396" /><ValueElement Value="HL70517" DisplayName="Inform Person Code " CodeSystem="HL70396" /><ValueElement Value="UB04FL31" DisplayName="Occurrence Code" CodeSystem="HL70396" /><ValueElement Value="GDRG2004" DisplayName="G-DRG German DRG Codes v 2004" CodeSystem="HL70396" /><ValueElement Value="HL70122" DisplayName="Charge Type " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2009" DisplayName="ICD 10 Germany v2009" CodeSystem="HL70396" /><ValueElement Value="HL70074" DisplayName="Diagnostic Service Section ID " CodeSystem="HL70396" /><ValueElement Value="HL70476" DisplayName="Medically Necessary Duplicate Procedure Reason " CodeSystem="HL70396" /><ValueElement Value="HL70254" DisplayName="Kind Of Quantity " CodeSystem="HL70396" /><ValueElement Value="HL70904" DisplayName="Security Check Scheme " CodeSystem="HL70396" /><ValueElement Value="HL70725" DisplayName="Mood Codes " CodeSystem="HL70396" /><ValueElement Value="HL70475" DisplayName="Charge Type Reason " CodeSystem="HL70396" /><ValueElement Value="HL70930" DisplayName="Volume Units " CodeSystem="HL70396" /><ValueElement Value="HL70064" DisplayName="Financial Class " CodeSystem="HL70396" /><ValueElement Value="HL70083" DisplayName="Outlier Type " CodeSystem="HL70396" /><ValueElement Value="HL70500" DisplayName="Consent Disclosure Level " CodeSystem="HL70396" /><ValueElement Value="HL70426" DisplayName="Blood Product Code " CodeSystem="HL70396" /><ValueElement Value="CVX" DisplayName="CDC Vaccine Codes" CodeSystem="HL70396" /><ValueElement Value="HGVS.c" DisplayName="HGVS- Transcript syntax" CodeSystem="HL70396" /><ValueElement Value="HL70539" DisplayName="Cost Center Code " CodeSystem="HL70396" /><ValueElement Value="HL70320" DisplayName="Item Natural Account Code " CodeSystem="HL70396" /><ValueElement Value="HL70642" DisplayName="Reorder Theory Codes " CodeSystem="HL70396" /><ValueElement Value="HL70461" DisplayName="License Number " CodeSystem="HL70396" /><ValueElement Value="HL70246" DisplayName="Product Available For Inspection " CodeSystem="HL70396" /><ValueElement Value="HL70440" DisplayName="Data Types " CodeSystem="HL70396" /><ValueElement Value="HL70464" DisplayName="Facility ID " CodeSystem="HL70396" /><ValueElement Value="ISO639" DisplayName="ISO 639 Language" CodeSystem="HL70396" /><ValueElement Value="HL70431" DisplayName="Recreational Drug Use Code " CodeSystem="HL70396" /><ValueElement Value="HL70510" DisplayName="Blood Product Dispense Status " CodeSystem="HL70396" /><ValueElement Value="RSPMODE" DisplayName="Specifies the mode, immediate versus deferred or queued, by which a receiver should communicate its receiver responsibilities." CodeSystem="HL70396" /><ValueElement Value="HL70834" DisplayName="Mime Types " CodeSystem="HL70396" /><ValueElement Value="HL70304" DisplayName="Bed " CodeSystem="HL70396" /><ValueElement Value="CE" DisplayName="CEN ECG diagnostic codes" CodeSystem="HL70396" /><ValueElement Value="ICD10CA" DisplayName="ICD-10 Canada" CodeSystem="HL70396" /><ValueElement Value="HL70324" DisplayName="Location Characteristic ID " CodeSystem="HL70396" /><ValueElement Value="OPS2008" DisplayName="OPS Germany v2008" CodeSystem="HL70396" /><ValueElement Value="HL70111" DisplayName="Delete Account Code " CodeSystem="HL70396" /><ValueElement Value="HL70931" DisplayName="Transport Temperature Units " CodeSystem="HL70396" /><ValueElement Value="HL70123" DisplayName="Result Status " CodeSystem="HL70396" /><ValueElement Value="HL70331" DisplayName="Facility Type " CodeSystem="HL70396" /><ValueElement Value="HL70240" DisplayName="Event Consequence " CodeSystem="HL70396" /><ValueElement Value="ROLECODE" DisplayName="Participation Mode" CodeSystem="HL70396" /><ValueElement Value="HL70446" DisplayName="Species Code " CodeSystem="HL70396" /><ValueElement Value="L" DisplayName="Local general code for a site-defined code system used for a specific set of trading partners. The 'zzz' SHALL be any printable ASCII string. Length of the name SHALL not exceed field width, and is subject to local implementation." CodeSystem="HL70396" /><ValueElement Value="HL70965" DisplayName="Contract Type" CodeSystem="HL70396" /><ValueElement Value="UCUM" DisplayName="UCUM code set for units of measure(from Regenstrief)" CodeSystem="HL70396" /><ValueElement Value="HL70868" DisplayName="Telecommunication Expiration Reason " CodeSystem="HL70396" /><ValueElement Value="HL70355" DisplayName="Primary Key Value Type " CodeSystem="HL70396" /><ValueElement Value="MEDR" DisplayName="Medical Dictionary for Drug Regulatory Affairs (MEDDRA)" CodeSystem="HL70396" /><ValueElement Value="CDS" DisplayName="CDC Surveillance" CodeSystem="HL70396" /><ValueElement Value="ICDO3" DisplayName="International Classification of Disease for Oncology Third Edition" CodeSystem="HL70396" /><ValueElement Value="HL70093" DisplayName="Release Information " CodeSystem="HL70396" /><ValueElement Value="CMSOMC" DisplayName="OCE Modifier Code" CodeSystem="HL70396" /><ValueElement Value="HL70536" DisplayName="Certificate Status " CodeSystem="HL70396" /><ValueElement Value="HL70651" DisplayName="Labor Calculation Type " CodeSystem="HL70396" /><ValueElement Value="VIS" DisplayName="Clinicians are required to track the Vaccine Information Sheet (VIS) that was shared with the recipient of a vaccination. This code system contains codes that identify the document type and the owner of the document." CodeSystem="HL70396" /><ValueElement Value="HL70001" DisplayName="Administrative Sex" CodeSystem="HL70396" /><ValueElement Value="HL70223" DisplayName="Living Dependency " CodeSystem="HL70396" /><ValueElement Value="HL70524" DisplayName="Sequence Condition" CodeSystem="HL70396" /><ValueElement Value="HL70532" DisplayName="Expanded Yes/No Indicator " CodeSystem="HL70396" /><ValueElement Value="RC" DisplayName="Read Classification" CodeSystem="HL70396" /><ValueElement Value="HL70126" DisplayName="Quantity Limited Request " CodeSystem="HL70396" /><ValueElement Value="I9CP" DisplayName="ICD-9CM Procedure codes" CodeSystem="HL70396" /><ValueElement Value="HL70214" DisplayName="Special Program Code " CodeSystem="HL70396" /><ValueElement Value="HL70963" DisplayName="Device Safety" CodeSystem="HL70396" /><ValueElement Value="HL70175" DisplayName="Master File Identifier Code " CodeSystem="HL70396" /><ValueElement Value="HL70280" DisplayName="Referral Priority " CodeSystem="HL70396" /><ValueElement Value="HL70212" DisplayName="Nationality " CodeSystem="HL70396" /><ValueElement Value="HL70344" DisplayName="Patient’S Relationship To Insured " CodeSystem="HL70396" /><ValueElement Value="GDRG2008" DisplayName="G-DRG German DRG Codes v2008" CodeSystem="HL70396" /><ValueElement Value="HL70936" DisplayName="Observation Type " CodeSystem="HL70396" /><ValueElement Value="HL70434" DisplayName="Patient Condition Code " CodeSystem="HL70396" /><ValueElement Value="HL70734" DisplayName="Grouper Status " CodeSystem="HL70396" /><ValueElement Value="FIPS5_2" DisplayName="FIPS 5-2 (State)" CodeSystem="HL70396" /><ValueElement Value="HL70316" DisplayName="Organ Donor Code " CodeSystem="HL70396" /><ValueElement Value="PLT" DisplayName="CDC PHLIP Lab test codes, where LOINC concept is too broad or not yet available, especially as needed for ordering and or lab to lab reporting )" CodeSystem="HL70396" /><ValueElement Value="HL70394" DisplayName="Response Modality " CodeSystem="HL70396" /><ValueElement Value="SNM" DisplayName="Systemized Nomenclature of Medicine (SNOMED)" CodeSystem="HL70396" /><ValueElement Value="refSeq-G" DisplayName="NCBI - genomic and chromosome reference sequences" CodeSystem="HL70396" /><ValueElement Value="HL70405" DisplayName="Organization Unit " CodeSystem="HL70396" /><ValueElement Value="HL70016" DisplayName="Isolation" CodeSystem="HL70396" /><ValueElement Value="HL70313" DisplayName="Policy Source " CodeSystem="HL70396" /><ValueElement Value="HL70087" DisplayName="Pre-Admit Test Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70309" DisplayName="Coverage Type " CodeSystem="HL70396" /><ValueElement Value="HL70367" DisplayName="Alert Level " CodeSystem="HL70396" /><ValueElement Value="HL70417" DisplayName="Tissue Type Code " CodeSystem="HL70396" /><ValueElement Value="HL70220" DisplayName="Living Arrangements " CodeSystem="HL70396" /><ValueElement Value="HL70429" DisplayName="Production Class Code " CodeSystem="HL70396" /><ValueElement Value="HL70923" DisplayName="Process Interruption " CodeSystem="HL70396" /><ValueElement Value="HL70682" DisplayName="Device Status " CodeSystem="HL70396" /><ValueElement Value="HL70006" DisplayName="Religion " CodeSystem="HL70396" /><ValueElement Value="HL70561" DisplayName="Product/Services Clarification Codes " CodeSystem="HL70396" /><ValueElement Value="HL70717" DisplayName="Access Restriction Value " CodeSystem="HL70396" /><ValueElement Value="HL70293" DisplayName="Billing Category " CodeSystem="HL70396" /><ValueElement Value="OPS2007" DisplayName="OPS Germany v2007" CodeSystem="HL70396" /><ValueElement Value="HL70133" DisplayName="Procedure Practitioner Identifier Code Type" CodeSystem="HL70396" /><ValueElement Value="HL70255" DisplayName="Duration Categories " CodeSystem="HL70396" /><ValueElement Value="HL70403" DisplayName="Language Ability " CodeSystem="HL70396" /><ValueElement Value="HL70371" DisplayName="Additive/Preservative " CodeSystem="HL70396" /><ValueElement Value="HL70334" DisplayName="Disabled Person Code " CodeSystem="HL70396" /><ValueElement Value="HL70929" DisplayName="Weight Units " CodeSystem="HL70396" /><ValueElement Value="HB" DisplayName="HIBCC" CodeSystem="HL70396" /><ValueElement Value="HL70657" DisplayName="Device Type" CodeSystem="HL70396" /><ValueElement Value="HL70336" DisplayName="Referral Reason " CodeSystem="HL70396" /><ValueElement Value="HL70488" DisplayName="Specimen Collection Method " CodeSystem="HL70396" /><ValueElement Value="HL70520" DisplayName="Message Waiting Priority " CodeSystem="HL70396" /><ValueElement Value="HL70565" DisplayName="Provider Adjustment Reason Code " CodeSystem="HL70396" /><ValueElement Value="OPS2015" DisplayName="OPS Germany v2015" CodeSystem="HL70396" /><ValueElement Value="HL70104" DisplayName="Version ID" CodeSystem="HL70396" /><ValueElement Value="HL70447" DisplayName="Breed Code " CodeSystem="HL70396" /><ValueElement Value="HL70101" DisplayName="Display Level" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2015" DisplayName="ICD 10 Germany v2015" CodeSystem="HL70396" /><ValueElement Value="dbVar-GL" DisplayName="dbVar-Germline" CodeSystem="HL70396" /><ValueElement Value="HL70562" DisplayName="Processing Consideration Codes " CodeSystem="HL70396" /><ValueElement Value="ISOnnnn" DisplayName="ISO Defined Codes where nnnn is the ISO table number. (deprecated)" CodeSystem="HL70396" CodePattern="ISO.+" /><ValueElement Value="HL70368" DisplayName="Remote Control Command " CodeSystem="HL70396" /><ValueElement Value="HL70538" DisplayName="Institution Relationship Type " CodeSystem="HL70396" /><ValueElement Value="SOC" DisplayName="Occupation (SOC 2000)" CodeSystem="HL70396" /><ValueElement Value="WC" DisplayName="WHO ATC" CodeSystem="HL70396" /><ValueElement Value="HL70506" DisplayName="Service Request Relationship" CodeSystem="HL70396" /><ValueElement Value="HL70905" DisplayName="Shipment Status " CodeSystem="HL70396" /><ValueElement Value="ISO3166_2" DisplayName="ISO 3166-2 Country subdivisions" CodeSystem="HL70396" /><ValueElement Value="HL70659" DisplayName="Lot Control " CodeSystem="HL70396" /><ValueElement Value="HL70959" DisplayName="Work Classification ODH" CodeSystem="HL70396" /><ValueElement Value="ASTM" DisplayName="JDV_J07-XdsTypeCode-CISIS" CodeSystem="HL70396" /><ValueElement Value="HL70081" DisplayName="Notice Of Admission" CodeSystem="HL70396" /><ValueElement Value="HL70806" DisplayName="Sterilization Type " CodeSystem="HL70396" /><ValueElement Value="HL70053" DisplayName="Diagnosis Coding Method" CodeSystem="HL70396" /><ValueElement Value="HL70404" DisplayName="Language Proficiency " CodeSystem="HL70396" /><ValueElement Value="HL70569" DisplayName="Adjustment Action " CodeSystem="HL70396" /><ValueElement Value="HL70062" DisplayName="Event Reason " CodeSystem="HL70396" /><ValueElement Value="HL70967" DisplayName="Container Form" CodeSystem="HL70396" /><ValueElement Value="HL70396" DisplayName="Coding System " CodeSystem="HL70396" /><ValueElement Value="HL70163" DisplayName="Body Site " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2009" DisplayName="German Alpha-ID v2009" CodeSystem="HL70396" /><ValueElement Value="HL70302" DisplayName="Point Of Care " CodeSystem="HL70396" /><ValueElement Value="HL70128" DisplayName="Allergy Severity " CodeSystem="HL70396" /><ValueElement Value="HL70286" DisplayName="Provider Role " CodeSystem="HL70396" /><ValueElement Value="HL70343" DisplayName="Military Handicapped Program Code " CodeSystem="HL70396" /><ValueElement Value="HL70303" DisplayName="Room " CodeSystem="HL70396" /><ValueElement Value="HL70935" DisplayName="Process Interruption Reason " CodeSystem="HL70396" /><ValueElement Value="HL70105" DisplayName="Source Of Comment " CodeSystem="HL70396" /><ValueElement Value="HL70882" DisplayName="Medical Role Executing Physician " CodeSystem="HL70396" /><ValueElement Value="HL70947" DisplayName="Class Of Trade" CodeSystem="HL70396" /><ValueElement Value="JC10" DisplayName="JLAC/JSLM, nationwide laboratory code" CodeSystem="HL70396" /><ValueElement Value="HL70253" DisplayName="Indirect Exposure Mechanism " CodeSystem="HL70396" /><ValueElement Value="HL70425" DisplayName="Newborn Code " CodeSystem="HL70396" /><ValueElement Value="HL70125" DisplayName="Value Type " CodeSystem="HL70396" /><ValueElement Value="AS4" DisplayName="ASTM E1238/ E1467 Universal" CodeSystem="HL70396" /><ValueElement Value="HL70339" DisplayName="Advanced Beneficiary Notice Code " CodeSystem="HL70396" /><ValueElement Value="FDAUNII" DisplayName="Unique Ingredient Identifier (UNII)" CodeSystem="HL70396" /><ValueElement Value="HL70969" DisplayName="Container Common Name" CodeSystem="HL70396" /><ValueElement Value="HL70202" DisplayName="Telecommunication Equipment Type " CodeSystem="HL70396" /><ValueElement Value="HL70412" DisplayName="Category Identifier" CodeSystem="HL70396" /><ValueElement Value="CDCA" DisplayName="CDC Analyte Codes" CodeSystem="HL70396" /><ValueElement Value="HL70106" DisplayName="Query/Response Format Code" CodeSystem="HL70396" /><ValueElement Value="HL70237" DisplayName="Event Qualification " CodeSystem="HL70396" /><ValueElement Value="DCM" DisplayName="DICOM Controlled Terminology" CodeSystem="HL70396" /><ValueElement Value="OPS2014" DisplayName="OPS Germany v2014" CodeSystem="HL70396" /><ValueElement Value="HL70075" DisplayName="Report Types" CodeSystem="HL70396" /><ValueElement Value="HL70381" DisplayName="Cap Type " CodeSystem="HL70396" /><ValueElement Value="I9C" DisplayName="International Classification of Diseases, 9th Revision, Clinical Modification (ICD-9-CM)" CodeSystem="HL70396" /><ValueElement Value="HL70441" DisplayName="Immunization Registry Status " CodeSystem="HL70396" /><ValueElement Value="Chrom-Loc" DisplayName="Cytogenetic (chromosome) location" CodeSystem="HL70396" /><ValueElement Value="HL70245" DisplayName="Product Problem " CodeSystem="HL70396" /><ValueElement Value="HL70669" DisplayName="Load Status " CodeSystem="HL70396" /><ValueElement Value="HL70350" DisplayName="Occurrence Code " CodeSystem="HL70396" /><ValueElement Value="HL70453" DisplayName="Health Care Provider Classification " CodeSystem="HL70396" /><ValueElement Value="FDK" DisplayName="FDA K10" CodeSystem="HL70396" /><ValueElement Value="CDCINDUSTRY2010" DisplayName="Industry CDC Census 2010" CodeSystem="HL70396" /><ValueElement Value="HL70061" DisplayName="Check Digit Scheme " CodeSystem="HL70396" /><ValueElement Value="HL70617" DisplayName="Address Usage " CodeSystem="HL70396" /><ValueElement Value="UC" DisplayName="UCDS" CodeSystem="HL70396" /><ValueElement Value="CDCOCCUPATION2010" DisplayName="Occupation CDC Census 2010" CodeSystem="HL70396" /><ValueElement Value="HL70281" DisplayName="Referral Type " CodeSystem="HL70396" /><ValueElement Value="NDC" DisplayName="National drug codes" CodeSystem="HL70396" /><ValueElement Value="O3012005" DisplayName="OPS Germany 2005" CodeSystem="HL70396" /><ValueElement Value="HL70427" DisplayName="Risk Management Incident Code " CodeSystem="HL70396" /><ValueElement Value="HL70210" DisplayName="Relational Conjunction " CodeSystem="HL70396" /><ValueElement Value="HL70236" DisplayName="Event Reported To " CodeSystem="HL70396" /><ValueElement Value="UB04FL35" DisplayName="Occurrence Span" CodeSystem="HL70396" /><ValueElement Value="HCPT" DisplayName="Health Care Provider Taxonomy" CodeSystem="HL70396" /><ValueElement Value="HL70871" DisplayName="Supply Risk Codes " CodeSystem="HL70396" /><ValueElement Value="HL70213" DisplayName="Purge Status Code " CodeSystem="HL70396" /><ValueElement Value="RXNORM" DisplayName="RxNorm" CodeSystem="HL70396" /><ValueElement Value="HL70042" DisplayName="Company Plan Code " CodeSystem="HL70396" /><ValueElement Value="ISO3166_1" DisplayName="ISO 3166-1 Country Codes" CodeSystem="HL70396" /><ValueElement Value="ACTRELSS" DisplayName="Used to indicate that the target of the relationship will be a filtered subset of the total related set of targets. Used when there is a need to limit the number of components to the first, the last, the next, the total, the average or some other filtere" CodeSystem="HL70396" /><ValueElement Value="HL70351" DisplayName="Occurrence Span " CodeSystem="HL70396" /><ValueElement Value="HL70328" DisplayName="Employee Classification " CodeSystem="HL70396" /><ValueElement Value="I9CDX" DisplayName="ICD-9CM Diagnosis codes" CodeSystem="HL70396" /><ValueElement Value="HL70278" DisplayName="Filler Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70790" DisplayName="Approving Regulatory Agency " CodeSystem="HL70396" /><ValueElement Value="HL70056" DisplayName="DRG Grouper Review Code " CodeSystem="HL70396" /><ValueElement Value="HL70110" DisplayName="Transfer To Bad Debt Code " CodeSystem="HL70396" /><ValueElement Value="HL70273" DisplayName="Document Availability Status " CodeSystem="HL70396" /><ValueElement Value="HL70438" DisplayName="Allergy Clinical Status " CodeSystem="HL70396" /><ValueElement Value="HL70926" DisplayName="Phlebotomy Status " CodeSystem="HL70396" /><ValueElement Value="HL70160" DisplayName="Tray Type " CodeSystem="HL70396" /><ValueElement Value="HL70477" DisplayName="Controlled Substance Schedule " CodeSystem="HL70396" /><ValueElement Value="HL70516" DisplayName="Error Severity " CodeSystem="HL70396" /><ValueElement Value="DQL" DisplayName="DICOM Query Label" CodeSystem="HL70396" /><ValueElement Value="HL70170" DisplayName="Derived Specimen " CodeSystem="HL70396" /><ValueElement Value="HL70489" DisplayName="Risk Codes" CodeSystem="HL70396" /><ValueElement Value="HL70541" DisplayName="Specimen Type Modifier " CodeSystem="HL70396" /><ValueElement Value="NAICS" DisplayName="Industry (NAICS)" CodeSystem="HL70396" /><ValueElement Value="HL70329" DisplayName="Quantity Method " CodeSystem="HL70396" /><ValueElement Value="HL70962" DisplayName="Device Status" CodeSystem="HL70396" /><ValueElement Value="HL70259" DisplayName="Modality " CodeSystem="HL70396" /><ValueElement Value="HL70526" DisplayName="Privilege Class " CodeSystem="HL70396" /><ValueElement Value="HL70361" DisplayName="Application " CodeSystem="HL70396" /><ValueElement Value="HL70474" DisplayName="Organization Unit Type " CodeSystem="HL70396" /><ValueElement Value="HL70094" DisplayName="Report Of Eligibility" CodeSystem="HL70396" /><ValueElement Value="HL70560" DisplayName="Quantity Units " CodeSystem="HL70396" /><ValueElement Value="ISO" DisplayName="ISO 2955.83 (units of measure) with HL7 extensions" CodeSystem="HL70396" /><ValueElement Value="HL70132" DisplayName="Transaction Code " CodeSystem="HL70396" /><ValueElement Value="HL70450" DisplayName="Event Type " CodeSystem="HL70396" /><ValueElement Value="HL70086" DisplayName="Plan ID " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2013" DisplayName="German Alpha-ID v2013" CodeSystem="HL70396" /><ValueElement Value="HL70487" DisplayName="Specimen Type " CodeSystem="HL70396" /><ValueElement Value="refSeq-T" DisplayName="NCBI-transcript reference sequences (RefSeq)" CodeSystem="HL70396" /><ValueElement Value="HL70073" DisplayName="Interest Rate Code " CodeSystem="HL70396" /><ValueElement Value="HL70011" DisplayName="Charging System" CodeSystem="HL70396" /><ValueElement Value="HL70938" DisplayName="Collection Event/Process Step Limit " CodeSystem="HL70396" /><ValueElement Value="HL70229" DisplayName="DRG Payor " CodeSystem="HL70396" /><ValueElement Value="HI" DisplayName="Health Outcomes" CodeSystem="HL70396" /><ValueElement Value="HL70065" DisplayName="Specimen Action Code " CodeSystem="HL70396" /><ValueElement Value="FDAUDI" DisplayName="FDA Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70549" DisplayName="NDC Codes " CodeSystem="HL70396" /><ValueElement Value="HL70508" DisplayName="Blood Product Processing Requirements " CodeSystem="HL70396" /><ValueElement Value="RefSeq-P" DisplayName="NCBI - protein reference sequence" CodeSystem="HL70396" /><ValueElement Value="GS1UDI" DisplayName="GS1 Unique Device Identifier" CodeSystem="HL70396" /><ValueElement Value="HL70184" DisplayName="Department " CodeSystem="HL70396" /><ValueElement Value="ICDO2" DisplayName="International Classification of Disease for Oncology Second Edition" CodeSystem="HL70396" /><ValueElement Value="ISO4217" DisplayName="ISO4217 Currency Codes" CodeSystem="HL70396" /><ValueElement Value="HL70187" DisplayName="Provider Billing " CodeSystem="HL70396" /><ValueElement Value="HL70392" DisplayName="Match Reason " CodeSystem="HL70396" /><ValueElement Value="HL70046" DisplayName="Credit Rating " CodeSystem="HL70396" /><ValueElement Value="HL70625" DisplayName="Item Status Codes " CodeSystem="HL70396" /><ValueElement Value="HL70939" DisplayName="Communication Location " CodeSystem="HL70396" /><ValueElement Value="HL70249" DisplayName="Generic Product " CodeSystem="HL70396" /><ValueElement Value="HL70478" DisplayName="Formulary Status " CodeSystem="HL70396" /><ValueElement Value="HL70513" DisplayName="Blood Product Transfusion/Disposition Status " CodeSystem="HL70396" /><ValueElement Value="HL70354" DisplayName="Message Structure " CodeSystem="HL70396" /><ValueElement Value="HL70051" DisplayName="Diagnosis Code " CodeSystem="HL70396" /><ValueElement Value="HL70121" DisplayName="Response Flag " CodeSystem="HL70396" /><ValueElement Value="CDCREC" DisplayName="Race &amp; Ethnicity - CDC" CodeSystem="HL70396" /><ValueElement Value="HL70092" DisplayName="Re-Admission Indicator " CodeSystem="HL70396" /><ValueElement Value="CDCNHSN" DisplayName="CDC National Healthcare Safety Network Codes" CodeSystem="HL70396" /><ValueElement Value="HL70442" DisplayName="Location Service Code" CodeSystem="HL70396" /><ValueElement Value="HL70964" DisplayName="Service Reason" CodeSystem="HL70396" /><ValueElement Value="HL70375" DisplayName="Artificial Blood " CodeSystem="HL70396" /><ValueElement Value="HL70528" DisplayName="Event Related Period " CodeSystem="HL70396" /><ValueElement Value="HL70108" DisplayName="Query Results Level" CodeSystem="HL70396" /><ValueElement Value="NND" DisplayName="Notifiable Event (Disease/Condition) Code List" CodeSystem="HL70396" /><ValueElement Value="ANS+" DisplayName="HL7 set of units of measure" CodeSystem="HL70396" /><ValueElement Value="COSMIC-Strc" DisplayName="COSMIC-Structural variants" CodeSystem="HL70396" /><ValueElement Value="NIP004" DisplayName="Vaccination - Contraindications, Precautions, and Immunities" CodeSystem="HL70396" /><ValueElement Value="HL70228" DisplayName="Diagnosis Classification " CodeSystem="HL70396" /><ValueElement Value="LANGUAL" DisplayName="LanguaL" CodeSystem="HL70396" /><ValueElement Value="HL70018" DisplayName="Patient Type " CodeSystem="HL70396" /><ValueElement Value="HL70325" DisplayName="Location Relationship ID " CodeSystem="HL70396" /><ValueElement Value="HL70512" DisplayName="Commercial Product " CodeSystem="HL70396" /><ValueElement Value="ACTCODE" DisplayName="Table of HL7 Version 3 ActCode values" CodeSystem="HL70396" /><ValueElement Value="HL70423" DisplayName="Case Category Code " CodeSystem="HL70396" /><ValueElement Value="HL70910" DisplayName="Acquisition Modality " CodeSystem="HL70396" /><ValueElement Value="E5" DisplayName="Euclides quantity codes" CodeSystem="HL70396" /><ValueElement Value="HL70180" DisplayName="Record-Level Event Code " CodeSystem="HL70396" /><ValueElement Value="HL70865" DisplayName="Referral Documentation Completion Status " CodeSystem="HL70396" /><ValueElement Value="HL70186" DisplayName="Practitioner Category " CodeSystem="HL70396" /><ValueElement Value="HL70231" DisplayName="Student Status " CodeSystem="HL70396" /><ValueElement Value="UPIN" DisplayName="UPIN" CodeSystem="HL70396" /><ValueElement Value="HL70076" DisplayName="Message Type " CodeSystem="HL70396" /><ValueElement Value="CAPECC" DisplayName="College of American Pathologists Electronic Cancer Checklist" CodeSystem="HL70396" /><ValueElement Value="HL70140" DisplayName="Military Service " CodeSystem="HL70396" /><ValueElement Value="I10" DisplayName="ICD-10" CodeSystem="HL70396" /><ValueElement Value="HL70277" DisplayName="Appointment Type Codes " CodeSystem="HL70396" /><ValueElement Value="HL70295" DisplayName="Handicap " CodeSystem="HL70396" /><ValueElement Value="HL70502" DisplayName="Non-Subject Consenter Reason " CodeSystem="HL70396" /><ValueElement Value="ITIS" DisplayName="Integrated Taxonomic Information System" CodeSystem="HL70396" /><ValueElement Value="HL70479" DisplayName="Pharmaceutical Substances " CodeSystem="HL70396" /><ValueElement Value="HL70146" DisplayName="Amount Type " CodeSystem="HL70396" /><ValueElement Value="HL70731" DisplayName="DRG Diagnosis Determination Status " CodeSystem="HL70396" /><ValueElement Value="HL70916" DisplayName="Relevant Clinical Information " CodeSystem="HL70396" /><ValueElement Value="HL70135" DisplayName="Assignment Of Benefits " CodeSystem="HL70396" /><ValueElement Value="HSLOC" DisplayName="Healthcare Service Location" CodeSystem="HL70396" /><ValueElement Value="HL70937" DisplayName="Observation Sub-Type " CodeSystem="HL70396" /><ValueElement Value="participation" DisplayName="null" CodeSystem="HL70396" /><ValueElement Value="UB04FL42" DisplayName="Revenue Code" CodeSystem="HL70396" /><ValueElement Value="HL70256" DisplayName="Time Delay Post Challenge " CodeSystem="HL70396" /><ValueElement Value="HL70391" DisplayName="Segment Group " CodeSystem="HL70396" /><ValueElement Value="HL70137" DisplayName="Mail Claim Party " CodeSystem="HL70396" /><ValueElement Value="HL70545" DisplayName="Language Translated To" CodeSystem="HL70396" /><ValueElement Value="HL70289" DisplayName="County/Parish " CodeSystem="HL70396" /><ValueElement Value="HL70335" DisplayName="Repeat Pattern " CodeSystem="HL70396" /><ValueElement Value="HL70115" DisplayName="Servicing Facilities" CodeSystem="HL70396" /><ValueElement Value="HL70918" DisplayName="PCA Type " CodeSystem="HL70396" /><ValueElement Value="CDCPHINVS" DisplayName="CDC PHIN Vocabulary Coding System" CodeSystem="HL70396" /><ValueElement Value="HL70469" DisplayName="Packaging Status Code " CodeSystem="HL70396" /><ValueElement Value="HL70234" DisplayName="Report Timing " CodeSystem="HL70396" /><ValueElement Value="O301" DisplayName="German Procedure Codes" CodeSystem="HL70396" /><ValueElement Value="EPASRS" DisplayName="EPA SRS" CodeSystem="HL70396" /><ValueElement Value="HL70301" DisplayName="Universal ID Type " CodeSystem="HL70396" /><ValueElement Value="HL70045" DisplayName="Courtesy Code " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2010" DisplayName="German Alpha-ID v2010" CodeSystem="HL70396" /><ValueElement Value="HL70096" DisplayName="Financial Transaction Code" CodeSystem="HL70396" /><ValueElement Value="HL70315" DisplayName="Living Will Code " CodeSystem="HL70396" /><ValueElement Value="HL70365" DisplayName="Equipment State " CodeSystem="HL70396" /><ValueElement Value="HL70881" DisplayName="Role Executing Physician " CodeSystem="HL70396" /><ValueElement Value="NDFRT" DisplayName="NDF-RT (Drug Classification)" CodeSystem="HL70396" /><ValueElement Value="HL70895" DisplayName="Present On Admission (POA) Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70066" DisplayName="Employment Status " CodeSystem="HL70396" /><ValueElement Value="MDC" DisplayName="Medical Device Communication" CodeSystem="HL70396" /><ValueElement Value="MCR" DisplayName="Medicare" CodeSystem="HL70396" /><ValueElement Value="HL70177" DisplayName="Confidentiality Code " CodeSystem="HL70396" /><ValueElement Value="LRG-RefSeq" DisplayName="Locus Reference Genomic (LRG)" CodeSystem="HL70396" /><ValueElement Value="HL70559" DisplayName="Product/Service Line Item Status " CodeSystem="HL70396" /><ValueElement Value="HL70496" DisplayName="Consent Type " CodeSystem="HL70396" /><ValueElement Value="HL70542" DisplayName="Specimen Source Type Modifier " CodeSystem="HL70396" /><ValueElement Value="HL70504" DisplayName="Sequence Condition Code " CodeSystem="HL70396" /><ValueElement Value="HPC" DisplayName="CMS (formerly HCFA )Procedure Codes (HCPCS)" CodeSystem="HL70396" /><ValueElement Value="GMDC2004" DisplayName="German Major Diagnostic Codes v 1004" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2010" DisplayName="ICD 10 Germany v2010" CodeSystem="HL70396" /><ValueElement Value="HL70531" DisplayName="Institution " CodeSystem="HL70396" /><ValueElement Value="HL70232" DisplayName="Insurance Company Contact Reason" CodeSystem="HL70396" /><ValueElement Value="HL70034" DisplayName="Site Administered" CodeSystem="HL70396" /><ValueElement Value="HL70342" DisplayName="Military Recipient " CodeSystem="HL70396" /><ValueElement Value="HL70044" DisplayName="Contract Code " CodeSystem="HL70396" /><ValueElement Value="NIP010" DisplayName="VAERS Report type" CodeSystem="HL70396" /><ValueElement Value="HL70555" DisplayName="Invoice Type " CodeSystem="HL70396" /><ValueElement Value="MTDT_TCH" DisplayName="JDV pour les codes MTDT" CodeSystem="HL70396" /><ValueElement Value="USGSGNIS" DisplayName="U.S. Board on Geographic Names (USGS - GNIS)" CodeSystem="HL70396" /><ValueElement Value="USPS" DisplayName="United States Postal Service" CodeSystem="HL70396" /><ValueElement Value="HL70275" DisplayName="Document Storage Status " CodeSystem="HL70396" /><ValueElement Value="HL70130" DisplayName="Visit User Code " CodeSystem="HL70396" /><ValueElement Value="HL70117" DisplayName="Account Status " CodeSystem="HL70396" /><ValueElement Value="HL70456" DisplayName="Revenue Code " CodeSystem="HL70396" /><ValueElement Value="HL70251" DisplayName="Action Taken In Response To The Event " CodeSystem="HL70396" /><ValueElement Value="IBTnnnn" DisplayName="ISBT 128 codes where nnnn specifies a specific table within ISBT 128." CodeSystem="HL70396" CodePattern="IBT.+" /><ValueElement Value="HL70299" DisplayName="Encoding " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2011" DisplayName="ICD 10 Germany v2011" CodeSystem="HL70396" /><ValueElement Value="HL70457" DisplayName="Overall Claim Disposition Code " CodeSystem="HL70396" /><ValueElement Value="Ensembl-P" DisplayName="Ensembl protein reference sequence" CodeSystem="HL70396" /><ValueElement Value="PHINQUESTION" DisplayName="CDC Public Health Information Network (PHIN) Question" CodeSystem="HL70396" /><ValueElement Value="HL70107" DisplayName="Deferred Response Type" CodeSystem="HL70396" /><ValueElement Value="UB04FL15" DisplayName="Point of Origin" CodeSystem="HL70396" /><ValueElement Value="HL70078" DisplayName="Interpretation Codes " CodeSystem="HL70396" /><ValueElement Value="cdcgs1vis" DisplayName="VIS Bar Codes (IIS)" CodeSystem="HL70396" /><ValueElement Value="HL70020" DisplayName="Unused Table" CodeSystem="HL70396" /><ValueElement Value="HL70422" DisplayName="Triage Code " CodeSystem="HL70396" /><ValueElement Value="HL70169" DisplayName="Reporting Priority " CodeSystem="HL70396" /><ValueElement Value="HL70205" DisplayName="Price Type " CodeSystem="HL70396" /><ValueElement Value="E6" DisplayName="Euclides Lab method codes" CodeSystem="HL70396" /><ValueElement Value="HL70150" DisplayName="Certification Patient Type " CodeSystem="HL70396" /><ValueElement Value="I9" DisplayName="ICD9" CodeSystem="HL70396" /><ValueElement Value="SIC" DisplayName="Industry (SIC)" CodeSystem="HL70396" /><ValueElement Value="CDCEDACUITY" DisplayName="CDC Emergency Department Acuity" CodeSystem="HL70396" /><ValueElement Value="HL70970" DisplayName="Online Verification Result" CodeSystem="HL70396" /><ValueElement Value="HL70550" DisplayName="Body Parts " CodeSystem="HL70396" /><ValueElement Value="MEDX" DisplayName="Medical Economics Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="ICD10AM" DisplayName="ICD-10 Australian modification" CodeSystem="HL70396" /><ValueElement Value="O3012006" DisplayName="Ops Germany 2006" CodeSystem="HL70396" /><ValueElement Value="HGVS.g" DisplayName="HGVS- Genomic syntax" CodeSystem="HL70396" /><ValueElement Value="HL70459" DisplayName="Reimbursement Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70618" DisplayName="Protection Code " CodeSystem="HL70396" /><ValueElement Value="HL70088" DisplayName="Procedure Code " CodeSystem="HL70396" /><ValueElement Value="HL70523" DisplayName="Computation Type " CodeSystem="HL70396" /><ValueElement Value="HL70261" DisplayName="Location Equipment " CodeSystem="HL70396" /><ValueElement Value="CLINVAR-V" DisplayName="ClinVar Variant ID" CodeSystem="HL70396" /><ValueElement Value="HL70934" DisplayName="Order Workflow Profile " CodeSystem="HL70396" /><ValueElement Value="GMDC2007" DisplayName="German Major Diagnostic Codes v2007" CodeSystem="HL70396" /><ValueElement Value="HL70207" DisplayName="Processing Mode" CodeSystem="HL70396" /><ValueElement Value="HL70265" DisplayName="Specialty Type " CodeSystem="HL70396" /><ValueElement Value="HL70809" DisplayName="Maintenance Cycle " CodeSystem="HL70396" /><ValueElement Value="ACR" DisplayName="American College of Radiology finding codes" CodeSystem="HL70396" /><ValueElement Value="HL70033" DisplayName="Route" CodeSystem="HL70396" /><ValueElement Value="HL70326" DisplayName="Visit Indicator " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2014" DisplayName="ICD 10 Germany v2014" CodeSystem="HL70396" /><ValueElement Value="HL70535" DisplayName="Signature Code" CodeSystem="HL70396" /><ValueElement Value="HL70158" DisplayName="Date/Time Selection Qualifier" CodeSystem="HL70396" /><ValueElement Value="HL70346" DisplayName="Certification Agency " CodeSystem="HL70396" /><ValueElement Value="HL70421" DisplayName="Severity Of Illness Code " CodeSystem="HL70396" /><ValueElement Value="POS" DisplayName="POS Codes" CodeSystem="HL70396" /><ValueElement Value="HL70162" DisplayName="Route Of Administration " CodeSystem="HL70396" /><ValueElement Value="HL70069" DisplayName="Hospital Service " CodeSystem="HL70396" /><ValueElement Value="HL70879" DisplayName="Product/Service Code " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2014" DisplayName="German Alpha-ID v2014" CodeSystem="HL70396" /><ValueElement Value="HL70907" DisplayName="Shipment Confidentiality " CodeSystem="HL70396" /><ValueElement Value="HL70463" DisplayName="Inventory Number " CodeSystem="HL70396" /><ValueElement Value="ICD10GM2013" DisplayName="ICD 10 Germany v2013" CodeSystem="HL70396" /><ValueElement Value="HL70152" DisplayName="Second Opinion Documentation Received " CodeSystem="HL70396" /><ValueElement Value="MDDX" DisplayName="Medispan Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="HL70530" DisplayName="Organization, Agency, Department " CodeSystem="HL70396" /><ValueElement Value="HL70356" DisplayName="Alternate Character Set Handling Scheme " CodeSystem="HL70396" /><ValueElement Value="HL70330" DisplayName="Marketing Basis " CodeSystem="HL70396" /><ValueElement Value="C5" DisplayName="CPT-5" CodeSystem="HL70396" /><ValueElement Value="HL70269" DisplayName="Charge On Indicator " CodeSystem="HL70396" /><ValueElement Value="HL70922" DisplayName="Certification Category Code " CodeSystem="HL70396" /><ValueElement Value="HL70238" DisplayName="Event Seriousness " CodeSystem="HL70396" /><ValueElement Value="HL70362" DisplayName="Facility " CodeSystem="HL70396" /><ValueElement Value="HL70166" DisplayName="RX Component Type " CodeSystem="HL70396" /><ValueElement Value="HL70124" DisplayName="Transportation Mode " CodeSystem="HL70396" /><ValueElement Value="HL70282" DisplayName="Referral Disposition " CodeSystem="HL70396" /><ValueElement Value="ALPHAID2012" DisplayName="German Alpha-ID v2013" CodeSystem="HL70396" /><ValueElement Value="HL70533" DisplayName="Application Error Code " CodeSystem="HL70396" /><ValueElement Value="HL70079" DisplayName="Location" CodeSystem="HL70396" /><ValueElement Value="ICD10GM2008" DisplayName="ICD 10 Germany v2008" CodeSystem="HL70396" /><ValueElement Value="FIPS55_3" DisplayName="Populated Places (FIPS 55-3)" CodeSystem="HL70396" /><ValueElement Value="HL70402" DisplayName="School Type " CodeSystem="HL70396" /><ValueElement Value="HL70204" DisplayName="Organizational Name Type " CodeSystem="HL70396" /><ValueElement Value="HGVS.p" DisplayName="HGVS-Protein syntax" CodeSystem="HL70396" /><ValueElement Value="W4" DisplayName="WHO record # code with ASTM extension" CodeSystem="HL70396" /><ValueElement Value="HL70145" DisplayName="Room Type " CodeSystem="HL70396" /><ValueElement Value="HL70430" DisplayName="Mode Of Arrival Code " CodeSystem="HL70396" /><ValueElement Value="GMDC2008" DisplayName="German Major Diagnostic Codes v2008" CodeSystem="HL70396" /><ValueElement Value="HL70409" DisplayName="Application Change Type " CodeSystem="HL70396" /><ValueElement Value="HL70384" DisplayName="Substance Type " CodeSystem="HL70396" /><ValueElement Value="HL70719" DisplayName="Access Restriction Reason" CodeSystem="HL70396" /><ValueElement Value="HL70615" DisplayName="User Authentication Credential Type Code " CodeSystem="HL70396" /><ValueElement Value="CDCODH" DisplayName="Occupational Data for Health (ODH)" CodeSystem="HL70396" /><ValueElement Value="HHC" DisplayName="Home Health Care" CodeSystem="HL70396" /><ValueElement Value="HL70337" DisplayName="Certification Status " CodeSystem="HL70396" /><ValueElement Value="HL70173" DisplayName="Coordination Of Benefits " CodeSystem="HL70396" /><ValueElement Value="HL70190" DisplayName="Address Type " CodeSystem="HL70396" /><ValueElement Value="SCT2" DisplayName="SNOMED Clinical Terms alphanumeric codes" CodeSystem="HL70396" /><ValueElement Value="HL70940" DisplayName="Limitation Type Codes " CodeSystem="HL70396" /><ValueElement Value="HL70119" DisplayName="Order Control Codes " CodeSystem="HL70396" /><ValueElement Value="HL70509" DisplayName="Indication For Use " CodeSystem="HL70396" /><ValueElement Value="HL70022" DisplayName="Billing Status " CodeSystem="HL70396" /><ValueElement Value="HL70449" DisplayName="PSRO/UR Approval Indicator" CodeSystem="HL70396" /><ValueElement Value="HL70200" DisplayName="Name Type " CodeSystem="HL70396" /><ValueElement Value="NULLFL" DisplayName="Flavors of NULL" CodeSystem="HL70396" /><ValueElement Value="HL70024" DisplayName="Fee Schedule " CodeSystem="HL70396" /><ValueElement Value="NDA" DisplayName="NANDA" CodeSystem="HL70396" /><ValueElement Value="CCC" DisplayName="Clinical Care Classification system" CodeSystem="HL70396" /><ValueElement Value="HL70776" DisplayName="Item Status " CodeSystem="HL70396" /><ValueElement Value="HL70378" DisplayName="Carrier Type " CodeSystem="HL70396" /><ValueElement Value="CAS" DisplayName="Chemical abstract codes" CodeSystem="HL70396" /><ValueElement Value="OHA" DisplayName="Omaha System" CodeSystem="HL70396" /><ValueElement Value="HL70951" DisplayName="Reason For Study" CodeSystem="HL70396" /><ValueElement Value="HL70552" DisplayName="Advanced Beneficiary Notice Override Reason " CodeSystem="HL70396" /><ValueElement Value="HL70468" DisplayName="Payment Adjustment Code " CodeSystem="HL70396" /><ValueElement Value="HL70312" DisplayName="Policy Scope " CodeSystem="HL70396" /><ValueElement Value="HL70161" DisplayName="Allow Substitution " CodeSystem="HL70396" /><ValueElement Value="FDDX" DisplayName="First DataBank Diagnostic Codes" CodeSystem="HL70396" /><ValueElement Value="HL70185" DisplayName="Preferred Method Of Contact " CodeSystem="HL70396" /><ValueElement Value="HL70505" DisplayName="Cyclic Entry/Exit Indicator " CodeSystem="HL70396" /><ValueElement Value="GDRG2005" DisplayName="G-DRG German DRG Codes v 2005" CodeSystem="HL70396" /><ValueElement Value="HL70961" DisplayName="Device Type" CodeSystem="HL70396" /><ValueElement Value="HL70116" DisplayName="Bed Status " CodeSystem="HL70396" /><ValueElement Value="GDRG2006" DisplayName="G-DRG German DRG Codes v 2006" CodeSystem="HL70396" /><ValueElement Value="HL70418" DisplayName="Procedure Priority " CodeSystem="HL70396" /><ValueElement Value="SMTPERRORCODE" DisplayName="Code d'erreur SMTP" CodeSystem="HL70396" /><ValueElement Value="HL70091" DisplayName="Query Priority " CodeSystem="HL70396" /><ValueElement Value="HL70206" DisplayName="Segment Action Code " CodeSystem="HL70396" /><ValueElement Value="HL70348" DisplayName="Special Program Indicator" CodeSystem="HL70396" /><ValueElement Value="HL70057" DisplayName="Drug Code" CodeSystem="HL70396" /><ValueElement Value="AckMetierZAM" DisplayName="Code des accusés métier" CodeSystem="HL70396" /><ValueElement Value="dbVar-som" DisplayName="dbVar-Somatic" CodeSystem="HL70396" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70445_PAM-FR_2-5" Name="Identity Reliability Code" Description="Identity Reliability Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="INVA" DisplayName="Invalidation de l’identité" CodeSystem="HL70445" Usage="P" /><ValueElement Value="HOMA" DisplayName="Homonyme avéré" CodeSystem="HL70445" Usage="P" /><ValueElement Value="DOUA" DisplayName="Doublon avéré" CodeSystem="HL70445" Usage="P" /><ValueElement Value="FICT" DisplayName="Identité fictive" CodeSystem="HL70445" Usage="P" /><ValueElement Value="FILI" DisplayName="Filiation" CodeSystem="HL70445" Usage="P" /><ValueElement Value="VALI" DisplayName="Validé" CodeSystem="HL70445" Usage="P" /><ValueElement Value="DOUB" DisplayName="Doublon ou esclave" CodeSystem="HL70445" Usage="P" /><ValueElement Value="IDRA" DisplayName="Identité rapprochée dans un autre domaine" CodeSystem="HL70445" Usage="P" /><ValueElement Value="RECD" DisplayName="Reçue d’un autre domaine" CodeSystem="HL70445" Usage="P" /><ValueElement Value="ANOM" DisplayName="Anonyme" CodeSystem="HL70445" Usage="P" /><ValueElement Value="CACH" DisplayName="Cachée" CodeSystem="HL70445" Usage="P" /><ValueElement Value="DPOT" DisplayName="Doublon potentiel" CodeSystem="HL70445" Usage="P" /><ValueElement Value="COLP" DisplayName="Collision potentielle" CodeSystem="HL70445" Usage="P" /><ValueElement Value="DESA" DisplayName="Désactivé" CodeSystem="HL70445" Usage="P" /><ValueElement Value="IDVER" DisplayName="Identité vérifiée par le patient" CodeSystem="HL70445" Usage="P" /><ValueElement Value="PROV" DisplayName="Provisoire" CodeSystem="HL70445" Usage="P" /><ValueElement Value="HOMD" DisplayName="Homonyme détecté" CodeSystem="HL70445" Usage="P" /><ValueElement Value="USUR" DisplayName="Usurpation" CodeSystem="HL70445" Usage="P" /><ValueElement Value="VIDE" DisplayName="Identité non encore qualifiée" CodeSystem="HL70445" Usage="P" /><ValueElement Value="COLV" DisplayName="Collision validée" CodeSystem="HL70445" Usage="P" /><ValueElement Value="DOUT" DisplayName="Identité douteuse" CodeSystem="HL70445" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70202_FR" Name="Telecommunication equipment type" Description="Telecommunication equipment type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="TDD" DisplayName="Telecommunications Device for the Deaf" CodeSystem="HL70202" Usage="P" /><ValueElement Value="FX" DisplayName="Fax" CodeSystem="HL70202" Usage="P" /><ValueElement Value="MD" DisplayName="Modem" CodeSystem="HL70202" Usage="P" /><ValueElement Value="Internet" DisplayName="Internet Address" CodeSystem="HL70202" Usage="P" /><ValueElement Value="CP" DisplayName="Cellular or Mobile Phone" CodeSystem="HL70202" Usage="P" /><ValueElement Value="BP" DisplayName="Beeper" CodeSystem="HL70202" Usage="P" /><ValueElement Value="PH" DisplayName="Telephone" CodeSystem="HL70202" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="JDV_J07-XdsTypeCode-CISIS" Name="JDV_J07-XdsTypeCode-CISIS" Description="JDV_J07-XdsTypeCode-CISIS" Oid="1.2.250.1.213.1.1.5.471" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="74465-6" DisplayName="Questionnaire patient" CodeSystem="LN" Usage="P" /><ValueElement Value="78489-2" DisplayName="Synthèse Enfant en Maternité" CodeSystem="LN" Usage="P" /><ValueElement Value="34112-3" DisplayName="CR hospitalier (séjour)" CodeSystem="LN" Usage="P" /><ValueElement Value="57075-4" DisplayName="Synthèse Salle de Naissance Enfant" CodeSystem="LN" Usage="P" /><ValueElement Value="BIL_AUTO" DisplayName="CR de bilan d'évaluation de la perte d'autonomie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="57828-6" DisplayName="Prescription (autre)" CodeSystem="LN" Usage="P" /><ValueElement Value="PRESC-BIO" DisplayName="Prescription d'actes de biologie médicale" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="75482-0" DisplayName="CR d'acte thérapeutique à visée préventive" CodeSystem="LN" Usage="P" /><ValueElement Value="55115-0" DisplayName="Demande d'actes d'imagerie" CodeSystem="LN" Usage="P" /><ValueElement Value="83836-7" DisplayName="Schéma dentaire" CodeSystem="LN" Usage="P" /><ValueElement Value="EXPPAT_2" DisplayName="Autre document du patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="61357-0" DisplayName="Intervention pharmaceutique" CodeSystem="LN" Usage="P" /><ValueElement Value="77604-7" DisplayName="Planification thérapeutique" CodeSystem="LN" Usage="P" /><ValueElement Value="57055-6" DisplayName="Synthèse antepartum" CodeSystem="LN" Usage="P" /><ValueElement Value="EXPPAT_1" DisplayName="Volontés et droits du patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="DOCPAT06" DisplayName="CR de prévention déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="70004-7" DisplayName="CR d'acte diagnostique (autre)" CodeSystem="LN" Usage="P" /><ValueElement Value="87273-9" DisplayName="Note de vaccination" CodeSystem="LN" Usage="P" /><ValueElement Value="DOCPAT03" DisplayName="CR déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="DOCPAT05" DisplayName="CR de biologie déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="77436-4" DisplayName="CR d'anesthésie" CodeSystem="LN" Usage="P" /><ValueElement Value="15508-5" DisplayName="CR d'accouchement" CodeSystem="LN" Usage="P" /><ValueElement Value="11490-0" DisplayName="Lettre de liaison à la sortie d'un établissement de soins" CodeSystem="LN" Usage="P" /><ValueElement Value="59283-2" DisplayName="CR d'examen de l'enfant" CodeSystem="LN" Usage="P" /><ValueElement Value="34133-9" DisplayName="Synthèse d'épisode de soins" CodeSystem="LN" Usage="P" /><ValueElement Value="34875-5" DisplayName="Évaluation postopératoire et note de suivi" CodeSystem="LN" Usage="P" /><ValueElement Value="DOCPAT02" DisplayName="Traitement ou document de soins déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="89235-6" DisplayName="Synthèse Suites de Couches Mère" CodeSystem="LN" Usage="P" /><ValueElement Value="DOCPAT09" DisplayName="Document administratif déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="DOCPAT01" DisplayName="Synthèse déposée par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="FEUILLE-DE-STYLE" DisplayName="Feuille de style" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="56445-0" DisplayName="Bilan médicamenteux (Officine)" CodeSystem="LN" Usage="P" /><ValueElement Value="88348-8" DisplayName="Lettre de liaison d'entrée en structure sociale ou médico-sociale" CodeSystem="LN" Usage="P" /><ValueElement Value="68817-6" DisplayName="Bilan de santé et de prévention de l'enfant" CodeSystem="LN" Usage="P" /><ValueElement Value="57832-8" DisplayName="Prescription de soins" CodeSystem="LN" Usage="P" /><ValueElement Value="AUTORIS-SOINS" DisplayName="Autorisation de soins et actes non usuels sanitaires" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="67851-6" DisplayName="CR d'admission" CodeSystem="LN" Usage="P" /><ValueElement Value="DOCPAT07" DisplayName="Certificat déposé par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="61358-8" DisplayName="Consentement chirurgical" CodeSystem="LN" Usage="P" /><ValueElement Value="80820-4" DisplayName="Formulaire de conciliation médicamenteuse (Hôpital)" CodeSystem="LN" Usage="P" /><ValueElement Value="CERT_DECL" DisplayName="Certificat, déclaration" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="PRESC-AAT" DisplayName="Prescription arrêt de travail" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="DOCPAT08" DisplayName="Profil médical Mon espace santé" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="57057-2" DisplayName="Synthèse Salle de Naissance Mère" CodeSystem="LN" Usage="P" /><ValueElement Value="83981-1" DisplayName="Lettre de liaison à la sortie d'une structure sociale ou médico-sociale" CodeSystem="LN" Usage="P" /><ValueElement Value="75496-0" DisplayName="Demande d'acte de télémédecine" CodeSystem="LN" Usage="P" /><ValueElement Value="93024-8" DisplayName="CR de consultation pharmaceutique" CodeSystem="LN" Usage="P" /><ValueElement Value="83869-8" DisplayName="Plan personnalisé de prévention" CodeSystem="LN" Usage="P" /><ValueElement Value="SYNTH" DisplayName="Synthèse" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="60593-1" DisplayName="Dispensation médicamenteuse" CodeSystem="LN" Usage="P" /><ValueElement Value="ATTEST-HEBGT" DisplayName="Attestation d'hébergement" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="PRESC-ORTHOPTIE" DisplayName="Prescription d'actes d'orthoptie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="57833-6" DisplayName="Prescription de produits de santé" CodeSystem="LN" Usage="P" /><ValueElement Value="PRESC-PEDI" DisplayName="Prescription d'actes de pédicurie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="96349-6" DisplayName="Lettre d'adressage" CodeSystem="LN" Usage="P" /><ValueElement Value="61359-6" DisplayName="Consentement anesthésique" CodeSystem="LN" Usage="P" /><ValueElement Value="PRESC-INF" DisplayName="Prescription d'actes infirmiers" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="47420-5" DisplayName="CR de bilan fonctionnel (par auxiliaire médical)" CodeSystem="LN" Usage="P" /><ValueElement Value="34842-5" DisplayName="Grille d'évaluation médico-social" CodeSystem="LN" Usage="P" /><ValueElement Value="ATTEST-ASS-COMPL" DisplayName="Attestation assurance complémentaire" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="34749-2" DisplayName="CR de consultation pré-anesthésique" CodeSystem="LN" Usage="P" /><ValueElement Value="11502-2" DisplayName="CR d'examens biologiques" CodeSystem="LN" Usage="P" /><ValueElement Value="11506-3" DisplayName="CR ou fiche de suivi de soins par auxiliaire médical" CodeSystem="LN" Usage="P" /><ValueElement Value="96173-0" DisplayName="Attestation de dépistage" CodeSystem="LN" Usage="P" /><ValueElement Value="28653-4" DisplayName="Document du secteur social / médico-social" CodeSystem="LN" Usage="P" /><ValueElement Value="EXPPAT_3" DisplayName="Directives anticipées" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="52040-3" DisplayName="Document encapsulant une image d'illustration non DICOM" CodeSystem="LN" Usage="P" /><ValueElement Value="ATTEST-RESID" DisplayName="Attestation de résidence" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="34874-8" DisplayName="CR opératoire" CodeSystem="LN" Usage="P" /><ValueElement Value="80788-3" DisplayName="Projet personnalisé d'accompagnement" CodeSystem="LN" Usage="P" /><ValueElement Value="11488-4" DisplayName="CR ou fiche de consultation ou de visite" CodeSystem="LN" Usage="P" /><ValueElement Value="89601-9" DisplayName="Certificat médical" CodeSystem="LN" Usage="P" /><ValueElement Value="18776-5" DisplayName="Plan personnalisé de soins" CodeSystem="LN" Usage="P" /><ValueElement Value="REMB" DisplayName="Données de remboursement" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="29274-8" DisplayName="Mesures de signes vitaux" CodeSystem="LN" Usage="P" /><ValueElement Value="51969-4" DisplayName="CR de génétique moléculaire" CodeSystem="LN" Usage="P" /><ValueElement Value="DISP_AUT" DisplayName="Dispensation (autre)" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="83901-9" DisplayName="Bilan psychologique" CodeSystem="LN" Usage="P" /><ValueElement Value="11505-5" DisplayName="CR d'acte thérapeutique (autre)" CodeSystem="LN" Usage="P" /><ValueElement Value="80771-9" DisplayName="Projet d'accueil individualisé" CodeSystem="LN" Usage="P" /><ValueElement Value="78513-9" DisplayName="CR de consultation en ophtalmologie" CodeSystem="LN" Usage="P" /><ValueElement Value="EXPORT_DUI" DisplayName="Export du Dossier Usager Informatisé" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="FICHE-CONTACTS" DisplayName="Fiche contacts" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="74207-2" DisplayName="Dossier de liaison d'urgence" CodeSystem="LN" Usage="P" /><ValueElement Value="11369-6" DisplayName="Historique des vaccinations" CodeSystem="LN" Usage="P" /><ValueElement Value="15507-7" DisplayName="CR de passage aux urgences" CodeSystem="LN" Usage="P" /><ValueElement Value="ATTEST-VITALE" DisplayName="Attestation de carte vitale" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="96874-3" DisplayName="COVID-19 Attestation de vaccination" CodeSystem="LN" Usage="P" /><ValueElement Value="DOCPAT04" DisplayName="Imagerie déposée par le patient" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="11526-1" DisplayName="CR d'anatomie et de cytologie pathologiques" CodeSystem="LN" Usage="P" /><ValueElement Value="IMG-KOS" DisplayName="Reference d'objets d'un examen d'imagerie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="18761-7" DisplayName="Note de transfert (dont lettre de liaison à l'entrée en établissement de soins)" CodeSystem="LN" Usage="P" /><ValueElement Value="34794-8" DisplayName="CR de réunion de concertation pluridisciplinaire" CodeSystem="LN" Usage="P" /><ValueElement Value="PIECE-IDENTITE" DisplayName="Copie pièce d'identité" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="PROT_ALD" DisplayName="Protocole de soins ALD" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="68599-0" DisplayName="Synthèse psychiatrique" CodeSystem="LN" Usage="P" /><ValueElement Value="75492-9" DisplayName="CR d'acte diagnostique à visée préventive ou de dépistage" CodeSystem="LN" Usage="P" /><ValueElement Value="78601-2" DisplayName="CR d'entretien pharmaceutique" CodeSystem="LN" Usage="P" /><ValueElement Value="80565-5" DisplayName="CR d'administration de médicaments" CodeSystem="LN" Usage="P" /><ValueElement Value="PRESC-ORTHOPHO" DisplayName="Prescription d'actes d'orthophonie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="18748-4" DisplayName="CR d'imagerie médicale" CodeSystem="LN" Usage="P" /><ValueElement Value="85208-7" DisplayName="CR de télémédecine" CodeSystem="LN" Usage="P" /><ValueElement Value="75468-9" DisplayName="Renouvellement ordonnance par pharmacien correspondant" CodeSystem="LN" Usage="P" /><ValueElement Value="60591-5" DisplayName="Synthèse du dossier médical" CodeSystem="LN" Usage="P" /><ValueElement Value="PRESC-KINE" DisplayName="Prescription d'actes de kinésithérapie" CodeSystem="TRE_A05" Usage="P" /><ValueElement Value="86531-1" DisplayName="Attestation de sortie" CodeSystem="LN" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70032_FR_2-5" Name="Charge/Price Indicator" Description="Charge/Price Indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="33" DisplayName="Recherche" CodeSystem="HL70032" Usage="P" /><ValueElement Value="19" DisplayName="Traitements et cures ambulatoires" CodeSystem="HL70032" Usage="P" /><ValueElement Value="97" DisplayName="Activité non dénommée ailleurs" CodeSystem="HL70032" Usage="P" /><ValueElement Value="03" DisplayName="Hospitalisation Complète (non compris hospitalisation de semaine) " CodeSystem="HL70032" Usage="P" /><ValueElement Value="28" DisplayName="Consultations dentaires et soins dentaires" CodeSystem="HL70032" Usage="P" /><ValueElement Value="18" DisplayName="Hébergement de nuit en structure éclatée" CodeSystem="HL70032" Usage="P" /><ValueElement Value="08" DisplayName="Bloc opératoire (y compris obstétrical et gynécologique) " CodeSystem="HL70032" Usage="P" /><ValueElement Value="32" DisplayName="Radiologie (radiodiagnostic et radiothérapie), imagerie médicale" CodeSystem="HL70032" Usage="P" /><ValueElement Value="17" DisplayName="Internat de semaine " CodeSystem="HL70032" Usage="P" /><ValueElement Value="04" DisplayName="Hospitalisation de jour" CodeSystem="HL70032" Usage="P" /><ValueElement Value="26" DisplayName="Analyses médicales biologiques" CodeSystem="HL70032" Usage="P" /><ValueElement Value="25" DisplayName="Hébergement temporaire de week-end ou de vacances" CodeSystem="HL70032" Usage="P" /><ValueElement Value="12" DisplayName="Hébergement de nuit en structure regroupée " CodeSystem="HL70032" Usage="P" /><ValueElement Value="10" DisplayName="Accueil des urgences " CodeSystem="HL70032" Usage="P" /><ValueElement Value="20" DisplayName="Hospitalisation de semaine" CodeSystem="HL70032" Usage="P" /><ValueElement Value="14" DisplayName="Externat" CodeSystem="HL70032" Usage="P" /><ValueElement Value="24" DisplayName="Accueil et prise en charge en service d'accueil familial thérapeutique psychiatrique" CodeSystem="HL70032" Usage="P" /><ValueElement Value="38" DisplayName="Accueil et prise en charge en centre de posture psychiatrique" CodeSystem="HL70032" Usage="P" /><ValueElement Value="07" DisplayName="Consultations, soins externes " CodeSystem="HL70032" Usage="P" /><ValueElement Value="05" DisplayName="Hospitalisation de nuit " CodeSystem="HL70032" Usage="P" /><ValueElement Value="06" DisplayName="Hospitalisation à domicile " CodeSystem="HL70032" Usage="P" /><ValueElement Value="09" DisplayName="Autres unités médico-techniques (anesthésiologie, explorations fonctionnelle,  rééducation et réadaptation fonctionnelles, pharmacie) " CodeSystem="HL70032" Usage="P" /><ValueElement Value="13" DisplayName="Semi-internat" CodeSystem="HL70032" Usage="P" /><ValueElement Value="39" DisplayName="Accueil et prise en charge en centre de crise psychiatrique" CodeSystem="HL70032" Usage="P" /><ValueElement Value="21" DisplayName="Accueil de jour" CodeSystem="HL70032" Usage="P" /><ValueElement Value="16" DisplayName="Prestations sur le lieu de vie (non compris placement familial)" CodeSystem="HL70032" Usage="P" /><ValueElement Value="23" DisplayName="Anesthésie ou chirurgie ambulatoires" CodeSystem="HL70032" Usage="P" /><ValueElement Value="37" DisplayName="Accueil et prise en charge en appartement thérapeutique psychiatrique" CodeSystem="HL70032" Usage="P" /><ValueElement Value="15" DisplayName="Placement en famille d'accueil (strictement social)" CodeSystem="HL70032" Usage="P" /><ValueElement Value="11" DisplayName="Hébergement complet ou internat (non compris internat de semaine)" CodeSystem="HL70032" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70007_FR_2-5" Name="Admission Type" Description="Admission Type" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="U" DisplayName="Urgent" CodeSystem="HL70007" Usage="P" /><ValueElement Value="C" DisplayName="Elective" CodeSystem="HL70007" Usage="P" /><ValueElement Value="RM" DisplayName="Rétrocession" CodeSystem="HL70007" Usage="P" /><ValueElement Value="N" DisplayName="Newborn (Birth in healthcare facility)" CodeSystem="HL70007" Usage="P" /><ValueElement Value="R" DisplayName="Routine" CodeSystem="HL70007" Usage="P" /><ValueElement Value="IE" DisplayName="Prestation inter établissements" CodeSystem="HL70007" Usage="P" /><ValueElement Value="L" DisplayName="Labor and Delivery" CodeSystem="HL70007" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70203_FR" Name="Identifier type" Description="Identifier type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="NNxxx" DisplayName="National Person Identifier where the xxx is the ISO table 3166 3-character (alphabetic) country code" CodeSystem="HL70203" Usage="P" /><ValueElement Value="ADELI" DisplayName="ADELI" CodeSystem="HL70203" Usage="P" Comments="Numéro au répertoire ADELI du  professionnel de santé" /><ValueElement Value="SIRET" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="N° SIRET de l’organisation" /><ValueElement Value="INS-C" DisplayName="INS-C" CodeSystem="HL70203" Usage="P" Comments="Numéro de sécurité social utilisé dans les  échanges avec l'assurance maladie." /><ValueElement Value="IDNST" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="Identification nationale de structure définie  par l’ASIP-SANTE dans le CI_SIS et  utilisée en extra-hospitalier." /><ValueElement Value="PI" DisplayName="Patient internal identifier" CodeSystem="HL70203" Usage="P" Comments="IPP d'établissement" /><ValueElement Value="RI" DisplayName="Resource identifier" CodeSystem="HL70203" Usage="P" Comments="Ressource interne" /><ValueElement Value="PPN" DisplayName="Passport number" CodeSystem="HL70203" Usage="P" Comments="Numéro du passeport" /><ValueElement Value="IDNPS" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="Identification nationale de PS définie par l’ASIP-SANTE dans le CI_SIS et utilisée  en extra-hospitalier" /><ValueElement Value="EI" DisplayName="Employee number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="MR" DisplayName="Medical record number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="RPPS" DisplayName="RPPS" CodeSystem="HL70203" Usage="P" Comments="N° d’inscription au RPPS du professionnel  de santé" /><ValueElement Value="SIREN" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="N° SIREN de l’organisatio" /><ValueElement Value="SRV" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="Code Service (axe organisationnel)" /><ValueElement Value="INS" DisplayName="Identifiant National de Santé NIR" CodeSystem="HL70203" Usage="P" Comments="INS-NIR ou INS-NIA récupéré à partir du  téléservice INSi." /><ValueElement Value="PN" DisplayName="Person number" CodeSystem="HL70203" Usage="P" Comments="Ipp fédérateur utilisé par un Cross  Reference Manager.  Egalement utilisé pour identifier les  personnes à prévenir ou les personnes de  confiance." /><ValueElement Value="RRI" DisplayName="Regional registry ID" CodeSystem="HL70203" Usage="P" /><ValueElement Value="FINEG" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="FINESS d’entité géographique" /><ValueElement Value="UF" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="Code UF" /><ValueElement Value="FINEJ" DisplayName="null" CodeSystem="HL70203" Usage="P" Comments="FINESS d’entité juridique" /><ValueElement Value="VN" DisplayName="Visit number" CodeSystem="HL70203" Usage="P" /><ValueElement Value="NH" DisplayName="National Health Plan Identifier" CodeSystem="HL70203" Usage="P" Comments="INS (Numéro Identifiant de Santé)" /><ValueElement Value="NDP" DisplayName="Identifiant du patient au Dossier  Pharmaceutique" CodeSystem="HL70203" Usage="P" /><ValueElement Value="AN" DisplayName="Account number" CodeSystem="HL70203" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70045_FR_2-5" Name="Courtesy Code" Description="Courtesy Code" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="Non" CodeSystem="HL70045" Usage="P" /><ValueElement Value="Y" DisplayName="Oui" CodeSystem="HL70045" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70301_FR" Name="Universal ID type" Description="Universal ID type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="ISO" DisplayName="ISO Object Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="DNS" DisplayName="Domain Name System" CodeSystem="HL70301" Usage="P" /><ValueElement Value="M" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="N" DisplayName="Local" CodeSystem="HL70301" Usage="P" /><ValueElement Value="UUID" DisplayName="Universal Unique Identifier" CodeSystem="HL70301" Usage="P" /><ValueElement Value="L" DisplayName="Local" CodeSystem="HL70301" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70001_PAM-FR_2-5" Name="Administrative Sex" Description="Administrative Sex" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="U" DisplayName="Unknown" CodeSystem="HL70001" Usage="P" /><ValueElement Value="F" DisplayName="Female" CodeSystem="HL70001" Usage="P" /><ValueElement Value="M" DisplayName="Male" CodeSystem="HL70001" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70004_FR_2-5" Name="Patient Class" Description="Patient Class" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="I" DisplayName="Inpatient" CodeSystem="HL70004" Usage="P" /><ValueElement Value="N" DisplayName="Not Applicable" CodeSystem="HL70004" Usage="P" /><ValueElement Value="E" DisplayName="Emergency" CodeSystem="HL70004" Usage="P" /><ValueElement Value="O" DisplayName="Outpatient" CodeSystem="HL70004" Usage="P" /><ValueElement Value="R" DisplayName="Recurring patient" CodeSystem="HL70004" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70099_FR_2-5" Name="VIP Indicator" Description="VIP Indicator" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="N" DisplayName="No" CodeSystem="HL70099" Usage="P" /><ValueElement Value="Y" DisplayName="Yes" CodeSystem="HL70099" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70023_FR_2-5" Name="Admit Source" Description="Admit Source" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="6" DisplayName="Transfer from another health care facility" CodeSystem="HL70023" Usage="P" /><ValueElement Value="4" DisplayName="Transfer from a hospital" CodeSystem="HL70023" Usage="P" /><ValueElement Value="91" DisplayName="Décision personnelle" CodeSystem="HL70023" Usage="P" /><ValueElement Value="7" DisplayName="Emergency room" CodeSystem="HL70023" Usage="P" /><ValueElement Value="3" DisplayName="HMO referral" CodeSystem="HL70023" Usage="P" /><ValueElement Value="8" DisplayName="Court/law enforcement" CodeSystem="HL70023" Usage="P" /><ValueElement Value="90" DisplayName="Séjour programmé" CodeSystem="HL70023" Usage="P" /><ValueElement Value="1" DisplayName="Physician referral" CodeSystem="HL70023" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70190_FR" Name="Address type" Description="Address type" Version="2.6" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="RH" DisplayName="Registry home. Refers to the information system, typically managed by a public health agency, that stores patient information such as immunization histories or cancer data, regardless of where the patient obtains services." CodeSystem="HL70190" Usage="P" /><ValueElement Value="DST" DisplayName="Etablissement de destination" CodeSystem="HL70190" Usage="P" /><ValueElement Value="VA" DisplayName="Adresse de vacances" CodeSystem="HL70190" Usage="P" /><ValueElement Value="M" DisplayName="Mailing" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BI" DisplayName="Billing Address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BDL" DisplayName="Birth delivery location  (address where birth occurred)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="ORI" DisplayName="Etablissement de provenance" CodeSystem="HL70190" Usage="P" /><ValueElement Value="SA" DisplayName="Adresse de résidence secondaire" CodeSystem="HL70190" Usage="P" /><ValueElement Value="C" DisplayName="Current Or Temporary" CodeSystem="HL70190" Usage="P" /><ValueElement Value="H" DisplayName="Home" CodeSystem="HL70190" Usage="P" /><ValueElement Value="B" DisplayName="Firm/Business" CodeSystem="HL70190" Usage="P" /><ValueElement Value="ASE" DisplayName="Adresse de soins du patient  quand celui-ci est suivi à  l’extérieur de l’établissement.  Cette adresse et notamment  utilisé dans le cadre des  soins/suivis HAD, RAAC,  chronique, post urgence" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BR" DisplayName="Residence at birth (home address at time of birth)" CodeSystem="HL70190" Usage="P" /><ValueElement Value="BA" DisplayName="Bad address" CodeSystem="HL70190" Usage="P" /><ValueElement Value="F" DisplayName="Country Of Origin" CodeSystem="HL70190" Usage="P" /><ValueElement Value="O" DisplayName="Office/Business" CodeSystem="HL70190" Usage="P" /></ValueSetDefinition><ValueSetDefinition BindingIdentifier="HL70112_FR_2-5" Name="Discharge Disposition" Description="Discharge Disposition" Version="2.5" Stability="Static" Extensibility="Closed" ContentDefinition="Extensional"><ValueElement Value="R" DisplayName="Essai (Contexte Psychiatrique)" CodeSystem="HL70112" Usage="P" /><ValueElement Value="2" DisplayName="Messures disciplinaires" CodeSystem="HL70112" Usage="P" /><ValueElement Value="5" DisplayName="En attente d'examen" CodeSystem="HL70112" Usage="P" /><ValueElement Value="B" DisplayName="Départ vers MCO" CodeSystem="HL70112" Usage="P" /><ValueElement Value="A" DisplayName="Absence ( &lt; 12h)" CodeSystem="HL70112" Usage="P" /><ValueElement Value="4" DisplayName="Contre avis médical" CodeSystem="HL70112" Usage="P" /><ValueElement Value="F" DisplayName="Fugue" CodeSystem="HL70112" Usage="P" /><ValueElement Value="P" DisplayName="Permission ( &lt;72h)" CodeSystem="HL70112" Usage="P" /><ValueElement Value="E" DisplayName="Evasion" CodeSystem="HL70112" Usage="P" /><ValueElement Value="6" DisplayName="Convenances personnelles" CodeSystem="HL70112" Usage="P" /><ValueElement Value="PSA" DisplayName="Patient parti sans attendre les soins" CodeSystem="HL70112" Usage="P" /><ValueElement Value="REO" DisplayName="Réorientation" CodeSystem="HL70112" Usage="P" /><ValueElement Value="3" DisplayName="Décision médicale (valeur par défaut)" CodeSystem="HL70112" Usage="P" /><ValueElement Value="S" DisplayName="Sortie avec programme de soins" CodeSystem="HL70112" Usage="P" /></ValueSetDefinition></ValueSetDefinitions></ValueSetLibrary>
\ No newline at end of file
diff --git a/gvt-validation-jar/src/test/resources/messages_examples/message_MDM_T02.hl7 b/gvt-validation-jar/src/test/resources/messages_examples/message_MDM_T02.hl7
new file mode 100644
index 0000000000000000000000000000000000000000..94e713207ce8aec441ecfa76204d032b844d98eb
--- /dev/null
+++ b/gvt-validation-jar/src/test/resources/messages_examples/message_MDM_T02.hl7
@@ -0,0 +1,21 @@
+MSH|^~\&|RIS-Y|Organisation-Y|PFI-Y|Organisation-Y|202106060931||MDM^T02^MDM_T02|015|P|2.6|||||FRA|UNICODE UTF-8|||2.1^CISIS_CDA_HL7_V2
+EVN||20211005152908|||PAT^ADMIN PAT-Cpage I^ADM PAT^^^^^^CPAGE&1.2.250.1.154&ISO^U^^^RI|20211005152908
+PID|||274075176079430^^^ASIP-SANTE-INS-NIR&1.2.250.1.213.1.4.8&ISO^INS^^20101207||PatA^DOMINIQUE^DOMINIQUE^^^^L||20050101|M|||28 Av de Breteuil^^PARIS^^75007^FRA^H~^^^^^^BDL^^63220|||||||405660^^^AUT-AFFECTATION&120456789&M^AN^^20101205|||||||||||||N|VALI
+PV1|1|I|UFNEPH||||||||||||||||000897406^^^AUT-AFFECTATION&120456789&M^VN^^20210409
+ORC|NW|
+OBR|1|||18748-4^CR d'imagerie médicale^LN|
+TXA|1|18748-4|TEXT|202212160932||||||||1.2.250.1.71.4.2.2.120456789.A71024000081^Organisation-Y|||||AU|||||801234564895
+OBX|1|ED|18748-4^CR d'imagerie médicale^LN||^text^XML^Base64^RG9jdW1lbnQgbWVkY2lhbCBhdSBmb3JtYXQgQ0RBIG5pdmVhdSAx||||||F|
+PRT||UC||SB^^|801234564895^Eric^Thomas^^^^^^ASIP-SANTE- PS&1.2.250.1.71.4.2.1&ISO^D^^^RPPS|||LABO-X^^^^^ASIP-SANTE-ST&1.2.250.1.71.4.2.2&ISO^FINEG^^^300017985
+PRT||UC||RCT^^participation|801234567897^Hoda^Adam^^^^^^ASIP-SANTE- PS&1.2.250.1.71.4.2.1&ISO^D^^^RPPS||||||||||^NET^X.400^adam.hoda@medecin.mssante.fr
+OBX|2|CWE|MASQUE_PS^Masqué aux professionnels de Santé^MetaDMPMSS||N^^expandedYes-NoIndicator||||||F|
+OBX|3|CWE|INVISIBLE_PATIENT^Document Non Visible par le patient^MetaDMPMSS||Y^^expandedYes-NoIndicator||||||F|
+OBX|4|CWE|INVISIBLE_REP_LEGAUX^Non visible par les représentants Légaux du patient^MetaDMPMSS||Y^^expandedYes-NoIndicator||||||F|
+OBX|5|CWE|CONNEXION_SECRETE^Connexion Secrete^MetaDMPMSS||Y^^expandedYes-NoIndicator||||||F|
+OBX|6|CWE|MODIF_CONF_CODE^Modification Confidentiality Code^MetaDMPMSS||N^^expandedYes-NoIndicator||||||F|
+OBX|7|CWE|DESTDMP^Destinataire DMP^MetaDMPMSS||Y^^expandedYes-NoIndicator||||||F|
+OBX|8|CWE|DESTMSSANTEPS^Destinataire (Professionnel de Santé, organisation ou BAL applicative)^MetaDMPMSS||Y^^expandedYes-NoIndicator||||||F|
+OBX|9|CWE|DESTMSSANTEPAT^Destinataire Patient^MetaDMPMSS||N^^expandedYes-NoIndicator||||||F|
+OBX|10|CWE|ACK_RECEPTION^Accusé de réception^MetaDMPMSS||N^^expandedYes-NoIndicator||||||F|
+OBX|11|CWE|ACK_LECTURE_MSS^Accusé de lecture^MetaDMPMSS||N^^expandedYes-NoIndicator||||||F|
+OBX|12|ED|CORPSMAIL_PS^Corps du mail pour un PS^MetaDMPMSS||^text^^Base64^Q2hlciBjb25mcsOocmUsIHZvdXMgdHJvdXZlcmV6IGNpLWpvaW50IGxlIENSIGTigJlpbWFnZXJpZSBkZSBNLkR1cG9udA==||||||F|
\ No newline at end of file